Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Use PAT so that next workflows can be triggered. #144

Merged
merged 1 commit into from
Apr 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 }}
nylonee marked this conversation as resolved.
Show resolved Hide resolved
Loading