Clean patches when issues/PR are closed #116
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Clean patches when issues/PR are closed | |
on: | |
schedule: | |
- cron: '30 3 * * 3' | |
workflow_dispatch: | |
jobs: | |
clean: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout webref | |
uses: actions/checkout@v2 | |
- name: Setup node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: | | |
npm install --no-save @actions/core | |
npm install --no-save @octokit/rest | |
npm install --no-save @octokit/plugin-throttling | |
- name: Drop patches locally when related issues/PR are closed | |
run: node tools/clean-patches.js | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create PR to drop patches from repo if needed | |
uses: peter-evans/create-pull-request@v3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
title: Drop patches that are no longer needed | |
commit-message: "Drop patches that are no longer needed" | |
body: ${{ env.dropped_patches }} | |
assignees: tidoust, dontcallmedom | |
branch: clean-patches | |
branch-suffix: timestamp |