diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-23 15:10:49 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-23 15:10:49 +1000 |
| commit | 27cf05ed10e1db2cfaadb93440884090185eda64 (patch) | |
| tree | 19101d8c45939d8811f33beb2973d9e9e0746fe7 /.github/workflows | |
| parent | ci: fix emoji action (diff) | |
| download | caelestia-cli-27cf05ed10e1db2cfaadb93440884090185eda64.tar.gz caelestia-cli-27cf05ed10e1db2cfaadb93440884090185eda64.tar.bz2 caelestia-cli-27cf05ed10e1db2cfaadb93440884090185eda64.zip | |
ci: fix emojis again
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/update-emojis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/update-emojis.yml b/.github/workflows/update-emojis.yml index 5ccb677..9e31dc3 100644 --- a/.github/workflows/update-emojis.yml +++ b/.github/workflows/update-emojis.yml @@ -12,6 +12,9 @@ jobs: update: runs-on: ubuntu-latest + permissions: + contents: write + steps: - uses: actions/checkout@v4 @@ -30,7 +33,7 @@ jobs: - name: Check for changes id: check - run: echo ::set-output name=modified::$(test -n "$(git status --porcelain)" && echo 'true' || echo 'false') + run: echo modified=$(test -n "$(git status --porcelain)" && echo 'true' || echo 'false') >> $GITHUB_OUTPUT - name: Commit and push changes if: steps.check.outputs.modified == 'true' |