mirror of
https://code.forgejo.org/actions/setup-forgejo
synced 2025-03-16 15:14:08 +01:00
18 lines
351 B
YAML
18 lines
351 B
YAML
![]() |
#
|
||
|
# As of Forgejo v1.20 running this example would require using the web
|
||
|
# endpoints because there is no API to do the same.
|
||
|
#
|
||
|
# It was manually tested to **not work** with Forgejo v1.20 & runner 2.5.0
|
||
|
#
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: docker
|
||
|
steps:
|
||
|
|
||
|
- run: sleep infinity
|
||
|
|
||
|
- if: cancelled()
|
||
|
run: echo IF TEST CANCELLED
|