Skip to content

Commit

Permalink
Restored GITHUB_TOKEN
Browse files Browse the repository at this point in the history
  • Loading branch information
snickerjp committed Dec 2, 2024
1 parent e5a999a commit 269f6ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/authenticating-with-github-app-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ jobs:
teamMembers="$(gh api /orgs/ORG/teams/TEAM_SLUG/members | jq -r '.[].login' | paste -sd, -)"
echo 'TEAM_MEMBERS='$teamMembers >> $GITHUB_ENV
env:
GH_TOKEN: ${{ secrets.CUSTOM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.CUSTOM_TOKEN }}
- name: Create issue
uses: peter-evans/create-issue-from-file@v4
with:
title: Monthly issue metrics report
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
content-filepath: ./issue_metrics.md
assignees: ${{ env.TEAM_MEMBERS }}
```

0 comments on commit 269f6ea

Please sign in to comment.