[BUG] Removes 2 characters at a somewhat regular interval and appends them in reverse order to end of output when inserting text to fields/clipboard, the final text in "History" is not effected. #244
This file contains hidden or 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 Intake | |
| on: | |
| issues: | |
| types: [opened, edited, reopened] | |
| schedule: | |
| - cron: "41 7 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| issue-intake: | |
| name: Issue Intake | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout policy from default branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.repository.default_branch }} | |
| persist-credentials: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Validate issue intake | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: node .github/policy/enforce-issue-intake.mjs |