Skip to content

Commit

Permalink
ci: set support-empathy user to run the actions (#8)
Browse files Browse the repository at this point in the history
ci: set `support-empathy` user to run the actions

EX-3839
  • Loading branch information
javieri-empathy authored May 10, 2021
1 parent 363a87b commit 4b520ca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.SUPPORT_TOKEN }}
- uses: actions/setup-node@v2
with:
node-version: 12
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.SUPPORT_TOKEN }}
- uses: actions/setup-node@v2
with:
node-version: 12
Expand All @@ -33,5 +34,5 @@ jobs:
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.SUPPORT_TOKEN }}
branch: ${{ github.ref }}
3 changes: 2 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.SUPPORT_TOKEN }}
fetch-depth: 0
- uses: actions/setup-node@v2
with:
Expand All @@ -32,6 +33,6 @@ jobs:
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.SUPPORT_TOKEN }}
branch: ${{ github.ref }}
tags: true

0 comments on commit 4b520ca

Please sign in to comment.