Skip to content

Commit

Permalink
Use custom token when creating automated PRs (#22476)
Browse files Browse the repository at this point in the history
* Use custom token when creating submodules PR

* Use custom token when creating composer update PR
  • Loading branch information
sgiehl authored Aug 5, 2024
1 parent 1a872e3 commit ca215c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/composer-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
message=
curl \
--request POST \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'authorization: Bearer ${{ secrets.CUSTOM_ACCESS_TOKEN }}' \
--header 'content-type: application/json' \
--data '{
"title":"[automatic composer updates]",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/submodules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
run: |
curl \
--request POST \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'authorization: Bearer ${{ secrets.CUSTOM_ACCESS_TOKEN }}' \
--header 'content-type: application/json' \
--data '{
"title":"[automatic submodule updates]",
Expand Down

0 comments on commit ca215c2

Please sign in to comment.