ci fingerprint tool #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: fingerprint bot | |
on: | |
issue_comment: | |
types: [created, edited, deleted] | |
jobs: | |
fingerprint: | |
if: contains(github.event.comment.body, '/fingerprint') | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: ./.github/workflows/setup-with-retry | |
- name: fingerprint | |
- name: create pull request | |
run: gh pr create -B base_branch -H branch_to_merge --title 'Merge branch_to_merge into base_branch' --body 'Created by Github action' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |