[Add] com-qqsdk-control-Tools 1.2.1
[CocoaPods.git] / .github / workflows / nightly-pr-close.yml
blob809df0ac545d05788192c18046f2eb6dd175e1b4
1 name: Close up open PRs on a nightly basis
3 on:
4   schedule:
5     - cron: "0 4 * * *"
7 on: pull_request
9 jobs:
10   close PRs:
11     runs-on: ubuntu-latest
12     steps:
13       - uses: actions/github-script@0.2.0
14         with:
15           github-token: ${{github.token}}
16           script: |
17             const msg =`Back in early 2014 we [launched CocoaPods Trunk](http://blog.cocoapods.org/CocoaPods-Trunk/). Trunk is the only way that you can submit pods to CocoaPods, we do not accept pull requests to the CocoaPods Specs repo, and so this is being auto-closed. Please see #12199 for more info.
19             - To push a new version to trunk, you can use `pod trunk push`.
20             - You cannot amend an existing pod, however you can delete and deprecate a pod. You need to be using CocoaPods 1.0 to have access to `pod trunk delete` and `pod trunk deprecate`. People may be relying on your pod version, so use these with caution.
21             - If you don't have permission to update a pod that you own, please [file a claim](http://blog.cocoapods.org/Claim-Your-Pods/) on trunk.
22             `
24             const pulls = await octokit.pulls.list({ owner: 'CocoaPods', repo: 'Specs', state: 'open' })
26             for (const pull of pulls.data) {
27               if (!pull.labels.find(l => l.name === "Keep")) {
29                 // Close it
30                 await octokit.pulls.update({ owner: 'CocoaPods', repo: 'Specs', state: "closed", pull_number: pull.number })
32                 // Comment why
33                 await github.issues.createComment({...context.issue, body: msg})
34               }
35             }