Skip to content

Commit

Permalink
ci: introduce a new empty workflow for upstream testing
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Dec 2, 2023
1 parent 8f33c4f commit ce37185
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: upstream
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
cancel-in-progress: true
on:
workflow_dispatch:
schedule:
- cron: "0 8 * * 3" # At 08:00 on Wednesday # https://crontab.guru/#0_8_*_*_3
pull_request:
types: [opened, synchronize]
branches:
- '*'
paths:
- .github/workflows/upstream.yml # this file

jobs:
rails:
name: empty job
steps:
run: echo hello world

0 comments on commit ce37185

Please sign in to comment.