Inconsistent behavior between executing directly from the command line and from inside a KeyHandler. #1686
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: Issue Pre-triage | |
on: | |
schedule: | |
# At 13:00 UTC every day. | |
- cron: '0 13 * * *' | |
issues: | |
types: [opened] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: pwsh | |
env: | |
POWERSHELL_TELEMETRY_OPTOUT: 1 | |
jobs: | |
process-new-issues: | |
name: Process new issues | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: do-work | |
run: | | |
$env:GITHUB_TOKEN = '${{ secrets.GITHUB_TOKEN }}' | |
./tools/issue-mgmt/CloseDupIssues.ps1 |