Skip to content

Commit

Permalink
chore: use regolith-ci-bot user and token
Browse files Browse the repository at this point in the history
  • Loading branch information
khos2ow committed Jan 27, 2025
1 parent 6d64d97 commit b2eb4c1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
id: prepare
uses: regolith-linux/actions/prepare-release@main
env:
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN2 }}
with:
name: "${{ github.event.repository.name }}"
repo: "${{ github.server_url }}/${{ github.repository }}.git"
Expand All @@ -35,21 +35,21 @@ jobs:
uses: stefanzweifel/git-auto-commit-action@v5
if: ${{ steps.prepare.outputs.release-exists == 'false' }}
env:
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN2 }}
with:
repository: "${{ steps.prepare.outputs.voulage-path }}"
branch: "main"
file_pattern: "stage/testing/**"
commit_message: "chore: bump ${{ github.event.repository.name }} testing to ${{ steps.prepare.outputs.release-version }}"
commit_user_name: regolith-bot
commit_user_name: regolith-ci-bot
commit_user_email: [email protected]
commit_author: "regolith-bot <[email protected]>"
commit_author: "regolith-ci-bot <[email protected]>"

- name: Release Package
uses: softprops/action-gh-release@v2
if: ${{ steps.prepare.outputs.release-exists == 'false' }}
with:
name: ${{ steps.prepare.outputs.release-version }}
tag_name: ${{ steps.prepare.outputs.release-version }}
token: ${{ secrets.ORG_BROADCAST_TOKEN }}
token: ${{ secrets.ORG_BROADCAST_TOKEN2 }}
generate_release_notes: true
2 changes: 1 addition & 1 deletion .github/workflows/publish-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
- name: Update Manifests
uses: regolith-linux/actions/update-manifest@main
env:
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN2 }}
with:
name: "${{ github.event.repository.name }}"
repo: "${{ github.server_url }}/${{ github.repository }}.git"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-unstable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Update Manifests
uses: regolith-linux/actions/update-manifest@main
env:
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN2 }}
with:
name: "${{ github.event.repository.name }}"
repo: "${{ github.server_url }}/${{ github.repository }}.git"
Expand Down

0 comments on commit b2eb4c1

Please sign in to comment.