Skip to content

Commit

Permalink
try the default token to fix the linting
Browse files Browse the repository at this point in the history
  • Loading branch information
gq1 committed Aug 17, 2023
1 parent 47dfb0b commit 098e001
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/fix-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
# Use the @nf-core-bot token to check out so we can push later
- uses: actions/checkout@v3
with:
token: ${{ secrets.pipelines_website_token }}
token: ${{ secrets.GITHUB_TOKEN }}

# Action runs on the issue comment, so we don't get the PR by default
# Use the gh cli to check out the PR
- name: Checkout Pull Request
run: gh pr checkout ${{ github.event.issue.number }}
env:
GITHUB_TOKEN: ${{ secrets.pipelines_website_token }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: actions/setup-node@v2

Expand Down Expand Up @@ -53,3 +53,5 @@ jobs:
git status
git commit -m "[automated] Fix linting with Prettier"
git push

0 comments on commit 098e001

Please sign in to comment.