Skip to content

Commit ce37185

Browse files
committed
ci: introduce a new empty workflow for upstream testing
1 parent 8f33c4f commit ce37185

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/upstream.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: upstream
2+
concurrency:
3+
group: "${{github.workflow}}-${{github.ref}}"
4+
cancel-in-progress: true
5+
on:
6+
workflow_dispatch:
7+
schedule:
8+
- cron: "0 8 * * 3" # At 08:00 on Wednesday # https://crontab.guru/#0_8_*_*_3
9+
pull_request:
10+
types: [opened, synchronize]
11+
branches:
12+
- '*'
13+
paths:
14+
- .github/workflows/upstream.yml # this file
15+
16+
jobs:
17+
rails:
18+
name: empty job
19+
steps:
20+
run: echo hello world

0 commit comments

Comments
 (0)