From cb791bf8506e8ce78afbf1c8a9f1efd0825d85d4 Mon Sep 17 00:00:00 2001 From: Tulili Date: Sun, 24 Mar 2024 22:08:02 -0300 Subject: [PATCH] Create issue_management.yml --- .github/workflows/issue_management.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/issue_management.yml diff --git a/.github/workflows/issue_management.yml b/.github/workflows/issue_management.yml new file mode 100644 index 0000000..4b46bea --- /dev/null +++ b/.github/workflows/issue_management.yml @@ -0,0 +1,24 @@ +name: Issue Management +on: + issues: + types: [opened] + pull_request: + types: [opened] +jobs: + run: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - name: Auto-assign issue + uses: pozil/auto-assign-issue@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + assignees: tulilirockz + numOfAssignee: 1 + - name: Add to Project Tracking + uses: actions/add-to-project@v0.6.1 + with: + project-url: https://github.com/orgs/atomic-studio-org/projects/3 + github-token: ${{ secrets.ADD_TO_PROJECT_TOKEN }}