diff --git a/.github/workflows/approval-workflow.yml b/.github/workflows/approval-workflow.yml new file mode 100644 index 0000000..8dde35d --- /dev/null +++ b/.github/workflows/approval-workflow.yml @@ -0,0 +1,15 @@ +name: Team awesome's approval workflow +on: pull_request_review +jobs: + labelWhenApproved: + name: Label when approved + runs-on: ubuntu-latest + steps: + - name: Label when approved + uses: pullreminders/label-when-approved-action@master + env: + APPROVALS: "2" + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + ADD_LABEL: "approved" + REMOVE_LABEL: "awaiting%20review" + diff --git a/automation.md b/automation.md new file mode 100644 index 0000000..36255a4 --- /dev/null +++ b/automation.md @@ -0,0 +1,7 @@ +The team would like: + - [ ] branch protections + - [ ] required review approvals + - [ ] easy way to see when enough approvals has been achieved + - [ ] matrix build + - [ ] save build artifacts + - [ ] dedicated test job \ No newline at end of file