The code and data behind xeiaso.net
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

.github/workflows: add dependabot super yolo workflow

Signed-off-by: Xe Iaso <me@xeiaso.net>

Xe Iaso 0abba0b1 1cee8353

+21 -2
+19
.github/workflows/dependabot.yml
··· 1 + name: Dependabot super yolo 2 + 3 + on: 4 + pull_request: 5 + types: [opened, synchronize] 6 + 7 + permissions: 8 + pull-requests: write 9 + contents: write 10 + 11 + jobs: 12 + run-custom-command: 13 + if: ${{ github.actor_id == '49699333' }} # Dependabot 14 + runs-on: alrest-xe-site 15 + steps: 16 + - name: Enable Pull Request Automerge 17 + run: gh pr merge --squash --auto ${{ github.event.number }} 18 + env: 19 + GH_TOKEN: ${{ github.token }}
+1 -1
.github/workflows/earthly.yml
··· 28 28 uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 29 29 with: 30 30 registry: ghcr.io 31 - username: ${{ github.actor }} 31 + username: xe 32 32 password: ${{ secrets.GITHUB_TOKEN }} 33 33 - name: Build and push Docker image 34 34 if: github.event_name != 'pull_request'
+1 -1
.github/workflows/go.yml
··· 55 55 - name: cache deno.land dependencies 56 56 uses: actions/cache@v2 57 57 with: 58 - key: ${{ runner.os }}-deno-${{ hashFiles('**/*') }} 58 + key: ${{ runner.os }}-deno-${{ hashFiles('**/deno.lock') }} 59 59 restore-keys: ${{ runner.os }}-deno- 60 60 path: | 61 61 /home/runner/.cache/deno