mirror of
https://code.forgejo.org/actions/forgejo-release.git
synced 2026-02-04 06:48:09 +00:00
ci: don't run on tags (#131)
Reviewed-on: https://code.forgejo.org/actions/forgejo-release/pulls/131 Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-committed-by: Michael Kriese <michael.kriese@visualon.de>
This commit is contained in:
parent
5abb3c3dd1
commit
2c623db48b
2 changed files with 12 additions and 5 deletions
|
|
@ -1,10 +1,12 @@
|
|||
on: [ pull_request, push ]
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- "**"
|
||||
|
||||
env:
|
||||
FORGEJO_VERSION: 11.0.10 # renovate: datasource=docker depName=code.forgejo.org/forgejo/forgejo
|
||||
|
||||
|
||||
jobs:
|
||||
integration:
|
||||
runs-on: lxc-trixie
|
||||
|
|
@ -68,7 +70,7 @@ jobs:
|
|||
testdata/forgejo-release-test.sh test_run testuser otherrepo
|
||||
|
||||
- if: always()
|
||||
name: '[RUNNER] and [FORGEJO] logs'
|
||||
name: "[RUNNER] and [FORGEJO] logs"
|
||||
run: |
|
||||
runner_logs="${{ steps.forgejo.outputs.runner-logs }}"
|
||||
if test -f "$runner_logs"; then
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
on: [pull_request, push]
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- "**"
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: docker
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue