Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .github/issue bugs.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/Label_issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Label issues
on:
issues:
types:
- reopened
- opened
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["triage"]
})
28 changes: 28 additions & 0 deletions .github/workflows/add to project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Add new PR to Project

on:
pull_request:
types: [opened]

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
add-pr-to-project:
permissions:
repository-projects: write

runs-on: ubuntu-latest
steps:

- name: Add To GitHub projects
uses: actions/add-to-project@v0.3.0
with:
# URL of the project to add issues to
project-url: https://github.com/users/dnels14/projects/1/views/1
# A GitHub personal access token with write access to the project
github-token: ${{ secrets.GITHUB_TOKEN }}
# A comma-separated list of labels to use as a filter for issue to be added
# labeled: # optional
# The behavior of the labels filter, AND to match all labels, OR to match any label, NOT to exclude any listed label (default is OR)
# label-operator: # optional