loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

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

Merge pull request '[CI] backport: show event information for debug purposes' (#2923) from earl-warren/forgejo:wip-ci-backport into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2923

+10
+5
.forgejo/workflows/backport.yml
··· 40 40 container: 41 41 image: 'docker.io/node:20-bookworm' 42 42 steps: 43 + - name: event info 44 + run: | 45 + cat <<'EOF' 46 + ${{ toJSON(github) }} 47 + EOF 43 48 - name: Fetch labels 44 49 id: fetch-labels 45 50 shell: bash
+5
.forgejo/workflows/testing.yml
··· 14 14 container: 15 15 image: 'docker.io/node:20-bookworm' 16 16 steps: 17 + - name: event info 18 + run: | 19 + cat <<'EOF' 20 + ${{ toJSON(github) }} 21 + EOF 17 22 - uses: https://code.forgejo.org/actions/checkout@v3 18 23 - uses: https://code.forgejo.org/actions/setup-go@v4 19 24 with: