Web UI: Tooltips in validator report broken #711
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: Bug triage | ||
on: | ||
issues: | ||
types: | ||
- opened | ||
jobs: | ||
triage: | ||
if: github.event.issue.labels.contains("bug") | ||
Check failure on line 8 in .github/workflows/triage.yml GitHub Actions / Bug triageInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create card | ||
uses: alex-page/[email protected] | ||
with: | ||
project: Bug triage | ||
column: Requires investigation | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Comment issue | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
github.rest.issues.createComment({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: "Thank you for your reporting a bug. The issue has been placed in [triage](https://github.com/orgs/MobilityData/projects/60/views/1), the MobilityData team will follow-up on it." | ||
}) |