Skip to content

testing finish ceremony action #1

testing finish ceremony action

testing finish ceremony action #1

Workflow file for this run

name: Finish ceremony
on:
pull_request:
types: [ closed ]
jobs:
finish-ceremony:
if: github.event.pull_request.merged == false
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
lfs: true
ref: ${{ github.event.pull_request.head.ref }}
- name: Checkout LFS objects
run: git lfs checkout
- name: Run toolkit
run: make finish-locally
- name: Commit ceremony artifacts
uses: stefanzweifel/git-auto-commit-action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
commit_message: Finish '${{ github.event.pull_request.head.ref }}' ceremony
commit_options: '--no-verify'
commit_user_name: Voceremony Bot