We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f33c4f commit ce37185Copy full SHA for ce37185
.github/workflows/upstream.yml
@@ -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