summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /.github
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/README7
-rw-r--r--.github/workflows/close-pr.yml20
2 files changed, 27 insertions, 0 deletions
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 }}