forked from microsoft/generative-ai-for-beginners
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'microsoft:main' into fix-links-issues
- Loading branch information
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Welcome to the Microsoft Generative AI | ||
on: | ||
# Trigger the workflow on new issue | ||
issues: | ||
types: [opened] | ||
jobs: | ||
asses-issue: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add Label and thanks comment to Issue | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const issueAuthor = context.payload.sender.login | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ['needs-review'] | ||
}) | ||
github.rest.issues.createComment({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: `👋 Thanks for contributing @${ issueAuthor }! We will review the issue and get back to you soon.` | ||
}) | ||
- name: Auto-assign issue | ||
uses: pozil/auto-assign-issue@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
assignees: koreyspace |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Welcome to the Microsoft Generative AI | ||
on: | ||
# Trigger the workflow on pull request | ||
pull_request_target: | ||
types: [opened] | ||
jobs: | ||
asses-pull-request: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add Label and thanks comment to Pull request | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const issueAuthor = context.payload.sender.login | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ['needs-review'] | ||
}) | ||
github.rest.issues.createComment({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: `👋 Thanks for contributing @${ issueAuthor }! We will review the pull request and get back to you soon.` | ||
}) | ||
- name: Auto-assign issue | ||
uses: pozil/auto-assign-issue@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
assignees: koreyspace |