generated from Team488/FRCRobotTemplate
-
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.
copy in .github folder from 2024 project
- Loading branch information
1 parent
c86a272
commit aa3dc40
Showing
4 changed files
with
47 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,3 @@ | ||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence, | ||
* @Team488/core-robot-maintainers |
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,11 @@ | ||
# Why are we doing this? | ||
|
||
Asana task URL: | ||
|
||
# Whats changing? | ||
|
||
# Questions/notes for reviewers | ||
|
||
# How this was tested | ||
- [ ] unit tests added | ||
- [ ] tested on robot |
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,17 @@ | ||
on: | ||
pull_request: | ||
types: [opened, closed, reopened, edited, converted_to_draft, ready_for_review] | ||
|
||
jobs: | ||
create-comment-in-asana-task-job: | ||
runs-on: ubuntu-latest | ||
name: Create a comment in Asana Task | ||
steps: | ||
- name: Create a comment | ||
uses: Asana/[email protected] | ||
id: createComment | ||
with: | ||
asana-secret: ${{ secrets.ASANA_SECRET }} | ||
comment-text: "{{PR_NAME}} is {{PR_STATE}}: {{PR_URL}}" | ||
- name: Get status | ||
run: echo "Status is ${{ steps.createComment.outputs.status }}" |
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,16 @@ | ||
on: | ||
pull_request: | ||
types: [opened, reopened, edited, converted_to_draft, ready_for_review] | ||
|
||
jobs: | ||
create-asana-attachment-job: | ||
runs-on: ubuntu-latest | ||
name: Create pull request attachments on Asana tasks | ||
steps: | ||
- name: Create pull request attachments | ||
uses: Asana/create-app-attachment-github-action@latest | ||
id: postAttachment | ||
with: | ||
asana-secret: ${{ secrets.ASANA_SECRET }} | ||
- name: Log output status | ||
run: echo "Status is ${{ steps.postAttachment.outputs.status }}" |