We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3020d5e commit 7e8c689Copy full SHA for 7e8c689
2 files changed
.github/workflows/tests.yaml
@@ -33,7 +33,7 @@ jobs:
33
runs-on: ubuntu-24.04
34
env:
35
# This is a private access token for @choldgraf that has public read-only access.
36
- GHA_ACCESS_TOKEN: ${{ secrets.TOKEN_READONLY }}
+ GHA_ACCESS_TOKEN: "${{ secrets.TOKEN_READONLY }}"
37
strategy:
38
matrix:
39
include:
github_activity/github_activity.py
@@ -174,7 +174,7 @@ def get_activity(
174
if kind in os.environ:
175
# Access token is stored in a local environment variable so just use this
176
print(
177
- "Using GH access token stored in `GITHUB_ACCESS_TOKEN`.",
+ f"Using GH access token stored in `{kind}`.",
178
file=sys.stderr,
179
)
180
auth = os.environ.get(kind)
0 commit comments