From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .github/workflows/README | 7 +++++++ .github/workflows/close-pr.yml | 20 ++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .github/workflows/README create mode 100644 .github/workflows/close-pr.yml (limited to '.github') diff --git a/.github/workflows/README b/.github/workflows/README new file mode 100644 index 0000000000..4e5f9713c7 --- /dev/null +++ b/.github/workflows/README @@ -0,0 +1,7 @@ +IMPORTANT + +All changes and/or additions to GitHub Workflows MUST be approved by the +Mozilla GitHub Enterprise Administrators Team. + +See https://mozilla-hub.atlassian.net/l/cp/f5ypVsa7 for contact information, or +reach out on Matrix: https://chat.mozilla.org/#/room/#github-admin:mozilla.org diff --git a/.github/workflows/close-pr.yml b/.github/workflows/close-pr.yml new file mode 100644 index 0000000000..a881cde247 --- /dev/null +++ b/.github/workflows/close-pr.yml @@ -0,0 +1,20 @@ +name: close pull request +on: + pull_request_target: + types: [opened, reopened] +jobs: + run: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v4 + with: + sparse-checkout: "README.txt" + sparse-checkout-cone-mode: false + - name: close + env: + GH_TOKEN: ${{ github.token }} + PR: ${{ github.event.number }} + run: | + gh pr close ${{ env.PR }} --comment "(Automated Close) Please do not file pull requests here, see https://firefox-source-docs.mozilla.org/contributing/how_to_submit_a_patch.html" + gh pr lock ${{ env.PR }} -- cgit v1.2.3