This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
[BUG] pre-commit hooks seems to ignore custom schema locations #366
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: Auto Assign to Project | |
on: | |
issues: | |
types: [labeled] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
assign_one_project: | |
runs-on: ubuntu-latest | |
name: Assign to One Project | |
steps: | |
- name: Assign issues with `up for grabs` label to project `Datree` | |
uses: srggrs/[email protected] | |
if: | | |
contains(github.event.issue.labels.*.name, 'up for grabs') | |
with: | |
project: 'https://github.com/datreeio/datree/projects/2' | |
column_name: 'To Do' |