Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add standard ponylang organization "discuss during sync" #92

Merged
merged 1 commit into from
Jan 24, 2024
Merged
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
29 changes: 29 additions & 0 deletions .github/workflows/add-discuss-during-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Add discuss during sync label

on:
issues:
types:
- opened
- reopened
issue_comment:
types:
- created
pull_request_target:
types:
- opened
- edited
- ready_for_review
- reopened
pull_request_review:
types:
- submitted

jobs:
add-label:
runs-on: ubuntu-latest
steps:
- name: Add "discuss during sync" label to active GH entity
uses: andymckay/labeler@467347716a3bdbca7f277cb6cd5fa9c5205c5412
with:
repo-token: ${{ secrets.PONYLANG_MAIN_API_TOKEN }}
add-labels: "discuss during sync"
19 changes: 19 additions & 0 deletions .github/workflows/remove-discuss-during-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Remove discuss during sync label

on:
issues:
types:
- closed
pull_request_target:
types:
- closed

jobs:
remove-label:
runs-on: ubuntu-latest
steps:
- name: Remove label
uses: andymckay/labeler@467347716a3bdbca7f277cb6cd5fa9c5205c5412
with:
repo-token: ${{ secrets.PONYLANG_MAIN_API_TOKEN }}
remove-labels: "discuss during sync"
Loading