Skip to content

Commit

Permalink
chore: replace GH_TOKEN with ORG_PAT
Browse files Browse the repository at this point in the history
  • Loading branch information
ferferga committed May 12, 2021
1 parent 1414ac0 commit 291c529
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }}
password: ${{ secrets.ORG_PAT }}

- name: Build and push stable SSR images
if: github.event.action == 'released'
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }}
password: ${{ secrets.ORG_PAT }}

- name: Build and push stable static images
if: github.event.action == 'released'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }}
password: ${{ secrets.ORG_PAT }}

- name: Build images and push
uses: docker/[email protected]
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }}
password: ${{ secrets.ORG_PAT }}

- name: Build images and push
uses: docker/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ jobs:
- uses: actions/labeler@v3
continue-on-error: true
with:
repo-token: '${{ secrets.GH_TOKEN }}'
repo-token: '${{ secrets.ORG_PAT }}'
2 changes: 1 addition & 1 deletion .github/workflows/merge-conflicts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
- uses: eps1lon/[email protected]
with:
dirtyLabel: 'merge conflict'
repoToken: ${{ secrets.GH_TOKEN }}
repoToken: ${{ secrets.ORG_PAT }}
6 changes: 3 additions & 3 deletions .github/workflows/project-automation.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Move new pull request to "Ongoing development" project
name: Automation

on:
pull_request:
types:
- opened

jobs:
automate-project-columns:
project:
runs-on: ubuntu-latest
steps:
- uses: alex-page/[email protected]
continue-on-error: true
with:
project: Ongoing development
column: In progress
repo-token: ${{ secrets.GH_TOKEN }}
repo-token: ${{ secrets.ORG_PAT }}
6 changes: 3 additions & 3 deletions .github/workflows/rebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
- name: Notify as seen
uses: peter-evans/[email protected]
with:
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.ORG_PAT }}
comment-id: ${{ github.event.comment.id }}
reactions: '+1'
- name: Checkout the latest code
uses: actions/[email protected]
with:
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.ORG_PAT }}
fetch-depth: 0
- name: Automatic Rebase
uses: cirrus-actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ORG_PAT }}

0 comments on commit 291c529

Please sign in to comment.