Skip to content

Commit 4eff4d3

Browse files
gkalpakpkozlowski-opensource
authored andcommitted
fix(docs-infra): fix Update AIO events GitHub Action (angular#47452)
Previously, the `Update AIO events` GitHub Action was using a version of the `create-pr-for-changes` GitHub Action that relied on a GitHub App key for Angular Robot. This, however, prevented PRs from being created from the accounts fork. Switch to a newer version of the `create-pr-for-changes` action that uses a GitHub Personal Access Token instead. PR Close angular#47452
1 parent 5fb7ae2 commit 4eff4d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/update-events.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
inputs: {}
1212
schedule:
1313
# Run every day at 15:00.
14-
- cron: 0 15 * * *
14+
- cron: '0 15 * * *'
1515

1616
# Declare default permissions as read only.
1717
permissions:
@@ -45,4 +45,4 @@ jobs:
4545
action: review
4646
comp: docs
4747
target: patch
48-
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
48+
angular-robot-token: ${{ secrets.ANGULAR_ROBOT_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)