Skip to content

Commit

Permalink
gh workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
leona-ya committed Dec 9, 2024
1 parent 6e4d710 commit 304ca27
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/auto-merge.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: auto-merge

on:
workflow_dispatch: {}
# schedule:
# - cron: "5 3 * * *"

jobs:
run-auto-merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: 'release-tools'
- uses: cachix/install-nix-action@v21
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.AUTO_MERGE_APP_ID }}
private-key: ${{ secrets.AUTO_MERGE_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
- run: |
echo "::add-mask::${{steps.app-token.outputs.token}}"
- name: Get GitHub App User ID
id: get-user-id
run: echo "user-id=$(gh api "/users/${{ steps.app-token.outputs.app-slug }}[bot]" --jq .id)" >> "$GITHUB_OUTPUT"
env:
GH_TOKEN: ${{ steps.app-token.outputs.token }}
- run: |
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]'
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>'
- name: build release tooling
run: |
nix build ./release-tools#
- run: |
echo '{ "test": "bar" }' > auto-merge-status.json
env:
GH_TOKEN: ${{ steps.app-token.outputs.token }}
- uses: actions/upload-artifact@v4
with:
name: status-json
path: auto-merge-status.json
if-no-files-found: error

0 comments on commit 304ca27

Please sign in to comment.