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
6 changes: 3 additions & 3 deletions .github/workflows/release-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ jobs:
ref: ${{ steps.target.outputs.branch }}
persist-credentials: false

- name: Create GitHub App token
- name: Create linearis-bot app token
id: app-token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ secrets.RELEASE_APP_ID }}
private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}

- name: Resolve GitHub App bot identity
- name: Resolve linearis-bot app bot identity
id: app-bot
shell: bash
env:
Expand All @@ -94,7 +94,7 @@ jobs:
echo "name=${slug}[bot]" >> "$GITHUB_OUTPUT"
echo "email=${id}+${slug}[bot]@users.noreply.github.com" >> "$GITHUB_OUTPUT"

- name: Configure git identity
- name: Configure git identity (linearis-bot app)
shell: bash
run: |
set -euo pipefail
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync-main-release-back-to-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
fetch-depth: 0
persist-credentials: false

- name: Create GitHub App token
- name: Create linearis-bot app token
id: app-token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ secrets.RELEASE_APP_ID }}
private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}

- name: Resolve GitHub App bot identity
- name: Resolve linearis-bot app bot identity
id: app-bot
shell: bash
env:
Expand All @@ -43,7 +43,7 @@ jobs:
echo "name=${slug}[bot]" >> "$GITHUB_OUTPUT"
echo "email=${id}+${slug}[bot]@users.noreply.github.com" >> "$GITHUB_OUTPUT"

- name: Configure git
- name: Configure git (linearis-bot app identity)
env:
GH_APP_TOKEN: ${{ steps.app-token.outputs.token }}
run: |
Expand Down
Loading