Skip to content

Commit

Permalink
chore: add a no-op workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dfx-json committed May 23, 2024
1 parent 4f84bf4 commit d3384ff
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/codeowner-approval.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: code owner approval
on:
push:
branches:
- master
pull_request:
jobs:
noop-darwin:
runs-on: macos-12
steps:
- uses: actions/checkout@v1
- name: No-op check
run: |
echo "Running no-op check to trigger codeowner approval"
noop-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: No-op check
run: |
echo "Running no-op check to trigger codeowner approval"

0 comments on commit d3384ff

Please sign in to comment.