-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: instructions on verifying token access to a repository
- Loading branch information
Showing
2 changed files
with
67 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
## Verify Token Access to Repository | ||
|
||
Github PAT token access can be confusing. Here's a quick way to test if the token you're using is authorized to access your repository. | ||
|
||
**Remove this snippet after you've verified your token.** | ||
|
||
- Make sure you follow the token setup instructions [here](https://github.com/github/issue-metrics/tree/main?tab=readme-ov-file#use-as-a-github-action) first. | ||
|
||
- Replace `{owner/repo}` with your own repo information. | ||
|
||
- Add this snippet to your workflow.yml. | ||
|
||
``` | ||
- name: Check GitHub token permissions | ||
run: | | ||
curl -H "Authorization: token ${{ secrets.GH_TOKEN }}" https://api.github.com/repos/{owner/repo} | ||
``` | ||
|
||
- Go to your repository Actions in Github and run your job. | ||
- In the job run details, click into the results of `Check Github token permissions` | ||
- You should see your token details with no errors. | ||
|
||
Example of the snippet in the full workflow: | ||
|
||
``` | ||
name: Monthly issue metrics | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '3 2 1 * *' | ||
permissions: | ||
contents: read | ||
jobs: | ||
build: | ||
name: issue metrics | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: read | ||
steps: | ||
- name: Check GitHub token permissions | ||
run: | | ||
curl -H "Authorization: token ${{ secrets.GH_TOKEN }}" https://api.github.com/{owner/repo} | ||
- name: Get dates for last month | ||
shell: bash | ||
run: | | ||
# Calculate the first day of the previous month | ||
first_day=$(date -d "last month" +%Y-%m-01) | ||
# Calculate the last day of the previous month | ||
last_day=$(date -d "$first_day +1 month -1 day" +%Y-%m-%d) | ||
#Set an environment variable with the date range | ||
echo "$first_day..$last_day" | ||
echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV" | ||
- name: Run issue-metrics tool | ||
uses: github/issue-metrics@v3 | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
SEARCH_QUERY: 'repo:{owner/repo} is:issue created:${{ env.last_month }}' | ||
``` |