Skip to content

Commit

Permalink
ci: add a skeleton github actions workflow for downstream projects
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Mar 14, 2023
1 parent dd0d815 commit c6964d6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: downstream

concurrency:
group: "${{github.workflow}}-${{github.ref}}"
cancel-in-progress: true

on:
workflow_dispatch:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
branches:
- '*'

jobs:
skeleton:
runs-on: ubuntu-latest
steps:
- run: echo hello world

0 comments on commit c6964d6

Please sign in to comment.