|
|
@ -18,21 +18,18 @@ jobs: |
|
|
|
|
|
|
|
|
|
|
|
process-issues: |
|
|
|
process-issues: |
|
|
|
name: Process Issues |
|
|
|
name: Process Issues |
|
|
|
|
|
|
|
|
|
|
|
# This allows a subsequently queued workflow run to wait for previous runs completion |
|
|
|
# This allows a subsequently queued workflow run to wait for previous runs completion |
|
|
|
concurrency: |
|
|
|
concurrency: |
|
|
|
group: '${{ github.workflow }} @ ${{ github.run_id }} :: issues' |
|
|
|
group: '${{ github.workflow }} @ ${{ github.run_id }} :: issues' |
|
|
|
cancel-in-progress: false |
|
|
|
cancel-in-progress: false |
|
|
|
|
|
|
|
# export variables used by reporter job |
|
|
|
outputs: |
|
|
|
outputs: |
|
|
|
staled-issues: ${{ steps.staler.outputs.staled-issues-prs }} |
|
|
|
staled-issues: ${{ steps.staler.outputs.staled-issues-prs }} |
|
|
|
closed-issues: ${{ steps.staler.outputs.closed-issues-prs }} |
|
|
|
closed-issues: ${{ steps.staler.outputs.closed-issues-prs }} |
|
|
|
|
|
|
|
# enable write access rights to allow comment and labeling by bot |
|
|
|
permissions: |
|
|
|
permissions: |
|
|
|
issues: write |
|
|
|
issues: write |
|
|
|
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- uses: actions/stale@v5 |
|
|
|
- uses: actions/stale@v5 |
|
|
|
with: |
|
|
|
with: |
|
|
@ -59,21 +56,18 @@ jobs: |
|
|
|
|
|
|
|
|
|
|
|
process-prs: |
|
|
|
process-prs: |
|
|
|
name: Process Pull Requests |
|
|
|
name: Process Pull Requests |
|
|
|
|
|
|
|
|
|
|
|
# This allows a subsequently queued workflow run to wait for previous runs completion |
|
|
|
# This allows a subsequently queued workflow run to wait for previous runs completion |
|
|
|
concurrency: |
|
|
|
concurrency: |
|
|
|
group: '${{ github.workflow }} @ ${{ github.run_id }} :: PRs' |
|
|
|
group: '${{ github.workflow }} @ ${{ github.run_id }} :: PRs' |
|
|
|
cancel-in-progress: false |
|
|
|
cancel-in-progress: false |
|
|
|
|
|
|
|
# export variables used by reporter job |
|
|
|
outputs: |
|
|
|
outputs: |
|
|
|
staled-prs: ${{ steps.staler.outputs.staled-issues-prs }} |
|
|
|
staled-prs: ${{ steps.staler.outputs.staled-issues-prs }} |
|
|
|
closed-prs: ${{ steps.staler.outputs.closed-issues-prs }} |
|
|
|
closed-prs: ${{ steps.staler.outputs.closed-issues-prs }} |
|
|
|
|
|
|
|
# enable write access rights to allow comment and labeling by bot |
|
|
|
permissions: |
|
|
|
permissions: |
|
|
|
pull-requests: write |
|
|
|
pull-requests: write |
|
|
|
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- uses: actions/stale@v5 |
|
|
|
- uses: actions/stale@v5 |
|
|
|
with: |
|
|
|
with: |
|
|
@ -101,11 +95,8 @@ jobs: |
|
|
|
|
|
|
|
|
|
|
|
reporter: |
|
|
|
reporter: |
|
|
|
name: GitHub reporter |
|
|
|
name: GitHub reporter |
|
|
|
|
|
|
|
|
|
|
|
needs: [process-issues, process-prs] |
|
|
|
needs: [process-issues, process-prs] |
|
|
|
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- run: | |
|
|
|
- run: | |
|
|
|
echo "### Staled issues" \ |
|
|
|
echo "### Staled issues" \ |
|
|
|