chore: Add more steps to git-sumi action
Some checks failed
Rust CI / Rust CI (pull_request) Has been cancelled

This commit is contained in:
Awiteb 2024-03-17 08:17:18 +03:00
parent 52f8b313f4
commit 4e83ceca2e
Signed by: awiteb
GPG key ID: 3F6B55640AA6682F

View file

@ -1,3 +1,5 @@
name: Check PR title
on:
pull_request:
types:
@ -6,13 +8,15 @@ on:
- reopened
jobs:
main:
check_pr_title:
runs-on: debian
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- run: |
curl -L "https://github.com/welpo/git-sumi/releases/download/v0.0.6/git-sumi-x86_64-unknown-linux-gnu.tar.xz" -o git-sumi.tar.xz
- name: Install git-sumi
run: |
curl -s -L "https://github.com/welpo/git-sumi/releases/download/v0.0.6/git-sumi-x86_64-unknown-linux-gnu.tar.xz" -o git-sumi.tar.xz
tar -xf git-sumi.tar.xz
mv git-sumi-x86_64-unknown-linux-gnu/git-sumi git-sumi
chmod +x git-sumi
./git-sumi "${{ github.event.pull_request.title }}"
- name: Run git-sumi
run: ./git-sumi "${{ github.event.pull_request.title }}"