We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23012fc commit 5cf9c69Copy full SHA for 5cf9c69
1 file changed
.github/workflows/tests.yaml
@@ -1,9 +1,7 @@
1
name: continuous-integration
2
3
on:
4
- # pull_request_target makes secrets available in the PR, so we avoid rate limits
5
- # YOU MUST MERGE THE PR to test changes to this file. GitHub run the version on `main`.
6
- pull_request_target:
+ pull_request:
7
push:
8
branches: [main]
9
tags:
@@ -36,11 +34,9 @@ jobs:
36
34
37
35
tests:
38
runs-on: ubuntu-24.04
39
- environment: pr-tests
40
env:
41
- # This is a private access token for @choldgraf that has public read-only access.
42
- # FUTURE: We should update the tests to only pull from this repository and not
43
- # need a token at all.
+ # This is a PAT for @choldgraf that only has read-access to this repo.
+ # We use it to avoid query limits.
44
GITHUB_ACCESS_TOKEN: "${{ secrets.TOKEN_READONLY }}"
45
strategy:
46
matrix:
0 commit comments