Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ jobs:
- name: Check GitHub rate limit at start
uses: wakamex/rate-limit-action@master
with:
token: ${{ secrets.GH_GITHUB_COM_TOKEN}}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token }}

- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token }}

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token }}
- run: |
python -m pip install --upgrade pip
python -m pip install .[with-dependencies]
Expand All @@ -43,4 +43,4 @@ jobs:
- name: Check GitHub rate limit at end
uses: wakamex/rate-limit-action@master
with:
token: ${{ secrets.GH_GITHUB_COM_TOKEN}}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token}}
2 changes: 1 addition & 1 deletion .github/workflows/ratelimit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- id: calc
uses: wakamex/rate-limit-action@master
with:
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token}}
sha: ${{ github.event.workflow_run.head_sha }}
post_comment: true
outputs:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ jobs:
- name: Check GitHub rate limit at start
uses: wakamex/rate-limit-action@master
with:
token: ${{ secrets.GH_GITHUB_COM_TOKEN}}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token}}

- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token}}

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token}}
- run: |
python -m pip install --upgrade pip
python -m pip install .[with-dependencies]
Expand All @@ -37,4 +37,4 @@ jobs:
- name: Check GitHub rate limit at end
uses: wakamex/rate-limit-action@master
with:
token: ${{ secrets.GH_GITHUB_COM_TOKEN}}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token}}
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
- name: Check GitHub rate limit at start
uses: wakamex/rate-limit-action@master
with:
token: ${{ secrets.GH_GITHUB_COM_TOKEN}}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token}}

- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token}}

- name: install node
uses: actions/setup-node@v3
Expand All @@ -44,7 +44,7 @@ jobs:
with:
python-version: "3.10"
cache: "pip"
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token}}
- run: |
python -m pip install --upgrade pip
python -m pip install .[with-dependencies,postgres]
Expand Down Expand Up @@ -72,4 +72,4 @@ jobs:
- name: Check GitHub rate limit at end
uses: wakamex/rate-limit-action@master
with:
token: ${{ secrets.GH_GITHUB_COM_TOKEN}}
token: ${{ secrets.GH_GITHUB_COM_TOKEN || github.token}}