diff --git a/.github/workflows/fetch-holidays.yml b/.github/workflows/fetch-holidays.yml index 5e9cb06..afcdaf5 100644 --- a/.github/workflows/fetch-holidays.yml +++ b/.github/workflows/fetch-holidays.yml @@ -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 'contact@norbert.tech' -# git add . -# git commit -am "Update google calendar regional holidays data" -# -# - name: "Create Pull Request" -# uses: peter-evans/create-pull-request@v3 \ No newline at end of file + - name: "Create Pull Request" + uses: peter-evans/create-pull-request@v3 + with: + commit-message: "Updated Google Calendar regional holidays" + committer: "GitHub " + 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 }}" \ No newline at end of file