1 name: Close up open PRs on a nightly basis
11 runs-on: ubuntu-latest
13 - uses: actions/github-script@0.2.0
15 github-token: ${{github.token}}
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.
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")) {
30 await octokit.pulls.update({ owner: 'CocoaPods', repo: 'Specs', state: "closed", pull_number: pull.number })
33 await github.issues.createComment({...context.issue, body: msg})