From 5e323f50eaf40b8c5d09fd25ed17ba637e23bfd1 Mon Sep 17 00:00:00 2001 From: Ximin han Date: Fri, 11 Aug 2023 20:33:54 +0800 Subject: [PATCH] Create softfix.yaml --- .github/workflows/softfix.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/softfix.yaml diff --git a/.github/workflows/softfix.yaml b/.github/workflows/softfix.yaml new file mode 100644 index 00000000..0d620f79 --- /dev/null +++ b/.github/workflows/softfix.yaml @@ -0,0 +1,14 @@ +name: Softfix workflow +on: + issue_comment: + types: [created] +jobs: + softfix: + name: Softfix action + if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/softfix') + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: dekvall/softfix@v1.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}