diff --git a/.github/workflows/create-release-pr.yml b/.github/workflows/create-release-pr.yml index fe78e867..871d4b56 100644 --- a/.github/workflows/create-release-pr.yml +++ b/.github/workflows/create-release-pr.yml @@ -43,10 +43,3 @@ jobs: with: release-type: ${{ github.event.inputs.release-type }} release-version: ${{ github.event.inputs.release-version }} - artifacts-path: gh-action__release-authors - # Upload the release author artifact for use in subsequent workflows - - uses: actions/upload-artifact@v2 - with: - name: release-authors - path: gh-action__release-authors - if-no-files-found: error diff --git a/.github/workflows/require-additional-reviewer.yml b/.github/workflows/require-additional-reviewer.yml deleted file mode 100644 index 1ea1c062..00000000 --- a/.github/workflows/require-additional-reviewer.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Require Additional Reviewer for Releases - -on: - pull_request: - pull_request_review: - -jobs: - require-additional-reviewer: - permissions: - actions: read - contents: read - pull-requests: read - statuses: write - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - # If the base branch has been merged into the release branch, we - # need to find the earliest common ancestor commit of the base and - # release branches. - fetch-depth: 0 - # We want the head / feature branch to be checked out, and we will - # compare it to the base branch in the action. - ref: ${{ github.event.pull_request.head.ref }} - - uses: MetaMask/action-require-additional-reviewer@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - read-org-token: ${{ secrets.ORG_READER }}