diff options
author | Sage Weil <sage@newdream.net> | 2021-10-21 17:12:50 +0200 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2021-11-03 19:26:04 +0100 |
commit | f0af2a753527a1da5e319af824a9b18d414c530a (patch) | |
tree | c2739c6ccea5b300fdeacdcf6fc48fd92e5ae49a /.github | |
parent | Merge PR #43504 into master (diff) | |
download | ceph-f0af2a753527a1da5e319af824a9b18d414c530a.tar.xz ceph-f0af2a753527a1da5e319af824a9b18d414c530a.zip |
.github/workflows/pr-checklist: add checklist action
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pr-checklist.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/pr-checklist.yml b/.github/workflows/pr-checklist.yml new file mode 100644 index 00000000000..c916db33ec4 --- /dev/null +++ b/.github/workflows/pr-checklist.yml @@ -0,0 +1,16 @@ +--- +name: "Pull Request Checklist" +on: + pull_request: + types: + - edited + - opened + - reopened +jobs: + pr_checklist: + runs-on: ubuntu-latest + name: Verify + steps: + - name: Action + id: checklist + uses: ceph/ceph-pr-checklist-action@32e92d1a2a7c9991ed51de5fccb2296551373d60 |