Skip to content

Commit

Permalink
Update GitHub token in automation_workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Aboudjem committed Feb 18, 2024
1 parent 442f571 commit 8f25d13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/automation_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
base: dev
title: "Sync ${{ github.head_ref }} to dev"
body: "Automated PR to sync changes from ${{ github.head_ref }} to dev."
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.PAT_TOKEN }}

- name: Create PR to main for release branches targeting dev
if: github.event.pull_request.base.ref == 'dev' && startsWith(github.head_ref, 'release/')
Expand All @@ -67,7 +67,7 @@ jobs:
base: main
title: "Sync ${{ github.head_ref }} to main"
body: "Automated PR to sync changes from ${{ github.head_ref }} to main."
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.PAT_TOKEN }}

mirror-fix-to-dev:
runs-on: ubuntu-latest
Expand All @@ -81,4 +81,4 @@ jobs:
base: dev
title: "[AUTO] Sync ${{ github.head_ref }} to dev"
body: "Automated PR to sync changes from ${{ github.head_ref }} to dev."
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.PAT_TOKEN }}

0 comments on commit 8f25d13

Please sign in to comment.