You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Run everyday at: https://crontab.guru/#0_6_*_*_*.
10
+
- cron: '0 6 * * *'
11
+
workflow_dispatch:
12
+
13
+
jobs:
14
+
auto-close:
15
+
runs-on: ubuntu-latest
16
+
steps:
17
+
- uses: actions/checkout@v4
18
+
with:
19
+
sparse-checkout: |
20
+
.github
21
+
- name: Close open pull requests
22
+
shell: bash
23
+
env:
24
+
GH_TOKEN: ${{ github.token }}
25
+
run: |
26
+
PRS=$(gh pr list --state=open --repo=ChromeDevTools/devtools-frontend --json number --jq '.[].number')
27
+
for PR in $PRS; do
28
+
# See https://cli.github.com/manual/gh_pr_close
29
+
gh pr close --comment "Auto-closing the pull request because we do not accept PRs via the GitHub mirror. See README.md on how to contribute to DevTools." $PR
Copy file name to clipboardExpand all lines: docs/committers_policy.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,8 @@ Once you get approval from the existing committers, you'll be added to [chrome-d
29
29
30
30
In the most unfavorable circumstances, the process could extend up to two weeks. Maintain your commitment to writing patches. Even in the uncommon instances where a nomination fails, the objection is frequently something specific to resolve, such as "more patches" or "not enough people are familiar with this person's work."
31
31
32
+
Two-factor authentication is a requirement for adding your account as a committer. If you haven't done so already, you'll need to set up a security key on your account.
33
+
32
34
# **Maintaining committer status**
33
35
34
36
Maintaining committer status in the DevTools project is straightforward. Continue to contribute and help the project in meaningful ways. If you remain inactive for 12 consecutive months (absence of comments, uploads, and reviews), you will be notified via email about removal in 7 days and then automatically removed from the list. You may reapply for committer status without going through the full nomination process.
0 commit comments