Skip to content

Commit

Permalink
Fix: Use PAT so that next workflows can be triggered. (#144)
Browse files Browse the repository at this point in the history
feat: use Personal Access Token so that subesequent workflows can be triggered
  • Loading branch information
ankit16-19 authored Apr 24, 2024
1 parent a7e1dcc commit e315d04
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/merge-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ on:

jobs:
preview:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
# https://github.com/orgs/community/discussions/25702
- uses: actions/checkout@v2
with:
token: ${{ secrets.PAT_TOKEN }}
- uses: nwtgck/actions-merge-preview@develop
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.PAT_TOKEN }}

0 comments on commit e315d04

Please sign in to comment.