diff options
| author | 2026-01-18 16:17:50 +0800 | |
|---|---|---|
| committer | 2026-01-18 16:17:50 +0800 | |
| commit | c659689bc0052a5acdf0e5c80286e8bcb1d43302 (patch) | |
| tree | 6aa72445a9b5e63c0402588401068d0b2d81c1c3 /.github/workflows/semifold-status.yaml | |
| parent | 30a7da9eb1734e19bdb98083bdaae757e0ce9b3a (diff) | |
| download | DropOut-c659689bc0052a5acdf0e5c80286e8bcb1d43302.tar.gz DropOut-c659689bc0052a5acdf0e5c80286e8bcb1d43302.zip | |
chore(ci): setup semifold
Diffstat (limited to '.github/workflows/semifold-status.yaml')
| -rw-r--r-- | .github/workflows/semifold-status.yaml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/semifold-status.yaml b/.github/workflows/semifold-status.yaml new file mode 100644 index 0000000..70225f6 --- /dev/null +++ b/.github/workflows/semifold-status.yaml @@ -0,0 +1,26 @@ +name: Semifold Status +on: + pull_request: + branches: [main] + +env: + CLICOLOR_FORCE: 1 + +permissions: + contents: write + pull-requests: write + issues: write + +jobs: + status: + name: Status + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Setup Semifold + uses: noctisynth/setup-semifold@main + - name: Semifold Status + run: semifold status + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |