forked from maflcko/DrahtBot
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (28 loc) · 721 Bytes
/
Copy pathci.yml
File metadata and controls
33 lines (28 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: ci
on:
push:
pull_request:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
dummy:
name: 'Checkout'
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Print pull request number as annotation
run: |
if [ "${{ github.event_name }}" = "pull_request" ]; then
echo "::debug title=Pull Request Number::The PR number is %0A %0An%0A ${{ github.event.number }}"
fi
- name: Checkout repo
uses: actions/checkout@v5
with:
fetch-depth: 1
- name: Print 200 lines then fail
run: |
for i in $(seq 1 200); do
echo "Dummy line $i"
done
false