Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/add-to-triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ on:
- reopened
- transferred

pull_request:
pull_request_target:
Copy link
Member Author

@lumirlumir lumirlumir Aug 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

types:
- opened
- reopened

workflow_call:
secrets:
PROJECT_BOT_TOKEN:
project_bot_token:
required: true
description: Token for the project bot to add issues and pull requests to the project triage board

Expand All @@ -26,7 +26,7 @@ jobs:
- name: Add to triage
uses: actions/[email protected]
with:
github-token: ${{ secrets.PROJECT_BOT_TOKEN }}
github-token: ${{ secrets.project_bot_token }}
project-url: https://github.com/orgs/eslint/projects/3
labeled: "triage:no" # Add all issues and pull requests that don't include "triage:no" label.
label-operator: NOT
4 changes: 2 additions & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

workflow_call:
secrets:
GITHUB_TOKEN:
token:
required: true
description: GitHub token to use for the workflow

Expand All @@ -22,7 +22,7 @@ jobs:
- name: Mark stale issues and pull requests
uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-token: ${{ secrets.token }}
days-before-issue-stale: 30
days-before-pr-stale: 10
days-before-close: 7
Expand Down