-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Piet Brömmel
committed
May 9, 2024
1 parent
d50185c
commit 5c0afe2
Showing
1 changed file
with
7 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,16 +27,10 @@ jobs: | |
CLIENT_ID: ${{ secrets.CLIENT_ID }} | ||
run: python fetch_data.py | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
branch: create-pull-request/patch | ||
branch-suffix: timestamp | ||
add-paths: | | ||
data/* | ||
commit-message: data update | ||
committer: GitHub <[email protected]> | ||
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | ||
delete-branch: true | ||
title: 'Update Deutsche Bahn data' | ||
body: '' | ||
- name: Commit and Push | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Piet Brömmel" | ||
git add data/* | ||
git commit -m "data update" | ||
git push |