-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create pull request when new holidays are fetched
- Loading branch information
1 parent
48698ad
commit 923cbe2
Showing
1 changed file
with
13 additions
and
9 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 |
---|---|---|
|
@@ -60,12 +60,16 @@ jobs: | |
- name: "Git status" | ||
run: "git status" | ||
|
||
# - name: "Create commits" | ||
# run: | | ||
# git config user.name 'Norbert Orzechowicz' | ||
# git config user.email '[email protected]' | ||
# git add . | ||
# git commit -am "Update google calendar regional holidays data" | ||
# | ||
# - name: "Create Pull Request" | ||
# uses: peter-evans/create-pull-request@v3 | ||
- name: "Create Pull Request" | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
commit-message: "Updated Google Calendar regional holidays" | ||
committer: "GitHub <[email protected]>" | ||
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | ||
signoff: false | ||
branch: update/google-calendar-holiday | ||
title: 'Updated Google Calendar regional holidays' | ||
|
||
- name: "Check output" | ||
run: | | ||
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" |