Skip to content

Commit 945b41e

Browse files
committed
Initial commit
0 parents  commit 945b41e

File tree

5 files changed

+151
-0
lines changed

5 files changed

+151
-0
lines changed

.github/workflows/manual.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Workflow to ensure whenever a Github PR is submitted,
2+
# a JIRA ticket gets created automatically.
3+
name: Manual Workflow
4+
5+
# Controls when the action will run.
6+
on:
7+
# Triggers the workflow on pull request events but only for the master branch
8+
pull_request_target:
9+
types: [opened, reopened]
10+
11+
# Allows you to run this workflow manually from the Actions tab
12+
workflow_dispatch:
13+
14+
jobs:
15+
test-transition-issue:
16+
name: Convert Github Issue to Jira Issue
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@master
21+
22+
- name: Login
23+
uses: atlassian/gajira-login@master
24+
env:
25+
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
26+
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
27+
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
28+
29+
- name: Create NEW JIRA ticket
30+
id: create
31+
uses: atlassian/gajira-create@master
32+
with:
33+
project: CONUPDATE
34+
issuetype: Task
35+
summary: |
36+
Github PR [Assign the ND component] | Repo: ${{ github.repository }} | PR# ${{github.event.number}}
37+
description: |
38+
Repo link: https://github.com/${{ github.repository }}
39+
PR no. ${{ github.event.pull_request.number }}
40+
PR title: ${{ github.event.pull_request.title }}
41+
PR description: ${{ github.event.pull_request.description }}
42+
In addition, please resolve other issues, if any.
43+
fields: '{"components": [{"name":"Github PR"}], "customfield_16449":"https://classroom.udacity.com/", "customfield_16450":"Resolve the PR", "labels": ["github"], "priority":{"id": "4"}}'
44+
45+
- name: Log created issue
46+
run: echo "Issue ${{ steps.create.outputs.issue }} was created"

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @udacity/active-public-content

LICENSE.txt

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
Copyright © 2012 - 2020, Udacity, Inc.
2+
3+
Udacity hereby grants you a license in and to the Educational Content, including
4+
but not limited to homework assignments, programming assignments, code samples,
5+
and other educational materials and tools (as further described in the Udacity
6+
Terms of Use), subject to, as modified herein, the terms and conditions of the
7+
Creative Commons Attribution-NonCommercial- NoDerivs 3.0 License located at
8+
http://creativecommons.org/licenses/by-nc-nd/4.0 and successor locations for
9+
such license (the "CC License") provided that, in each case, the Educational
10+
Content is specifically marked as being subject to the CC License.
11+
12+
Udacity expressly defines the following as falling outside the definition of
13+
"non-commercial":
14+
(a) the sale or rental of (i) any part of the Educational Content, (ii) any
15+
derivative works based at least in part on the Educational Content, or (iii)
16+
any collective work that includes any part of the Educational Content;
17+
(b) the sale of access or a link to any part of the Educational Content without
18+
first obtaining informed consent from the buyer (that the buyer is aware
19+
that the Educational Content, or such part thereof, is available at the
20+
Website free of charge);
21+
(c) providing training, support, or editorial services that use or reference the
22+
Educational Content in exchange for a fee;
23+
(d) the sale of advertisements, sponsorships, or promotions placed on the
24+
Educational Content, or any part thereof, or the sale of advertisements,
25+
sponsorships, or promotions on any website or blog containing any part of
26+
the Educational Material, including without limitation any "pop-up
27+
advertisements";
28+
(e) the use of Educational Content by a college, university, school, or other
29+
educational institution for instruction where tuition is charged; and
30+
(f) the use of Educational Content by a for-profit corporation or non-profit
31+
entity for internal professional development or training.
32+
33+
THE SERVICES AND ONLINE COURSES (INCLUDING ANY CONTENT) ARE PROVIDED "AS IS" AND
34+
"AS AVAILABLE" WITH NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EITHER
35+
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
36+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. YOU
37+
ASSUME TOTAL RESPONSIBILITY AND THE ENTIRE RISK FOR YOUR USE OF THE SERVICES,
38+
ONLINE COURSES, AND CONTENT. WITHOUT LIMITING THE FOREGOING, WE DO NOT WARRANT
39+
THAT (A) THE SERVICES, WEBSITES, CONTENT, OR THE ONLINE COURSES WILL MEET YOUR
40+
REQUIREMENTS OR EXPECTATIONS OR ACHIEVE THE INTENDED PURPOSES, (B) THE WEBSITES
41+
OR THE ONLINE COURSES WILL NOT EXPERIENCE OUTAGES OR OTHERWISE BE UNINTERRUPTED,
42+
TIMELY, SECURE OR ERROR-FREE, (C) THE INFORMATION OR CONTENT OBTAINED THROUGH
43+
THE SERVICES, SUCH AS CHAT ROOM SERVICES, WILL BE ACCURATE, COMPLETE, CURRENT,
44+
ERROR- FREE, COMPLETELY SECURE OR RELIABLE, OR (D) THAT DEFECTS IN OR ON THE
45+
SERVICES OR CONTENT WILL BE CORRECTED. YOU ASSUME ALL RISK OF PERSONAL INJURY,
46+
INCLUDING DEATH AND DAMAGE TO PERSONAL PROPERTY, SUSTAINED FROM USE OF SERVICES.

README.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# README Template
2+
3+
Below is a template provided for use when building your README file for students.
4+
5+
# Project Title
6+
7+
Project description goes here.
8+
9+
## Getting Started
10+
11+
Instructions for how to get a copy of the project running on your local machine.
12+
13+
### Dependencies
14+
15+
```
16+
Examples here
17+
```
18+
19+
### Installation
20+
21+
Step by step explanation of how to get a dev environment running.
22+
23+
List out the steps
24+
25+
```
26+
Give an example here
27+
```
28+
29+
## Testing
30+
31+
Explain the steps needed to run any automated tests
32+
33+
### Break Down Tests
34+
35+
Explain what each test does and why
36+
37+
```
38+
Examples here
39+
```
40+
41+
## Project Instructions
42+
43+
This section should contain all the student deliverables for this project.
44+
45+
## Built With
46+
47+
* [Item1](www.item1.com) - Description of item
48+
* [Item2](www.item2.com) - Description of item
49+
* [Item3](www.item3.com) - Description of item
50+
51+
Include all items used to build project.
52+
53+
## License
54+
55+
[License](LICENSE.txt)

starter/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Purpose of this Folder
2+
3+
This folder should contain the scaffolded project files to get a student started on their project. This repo will be added to the Classroom for students to use, so please do not have any solutions in this folder.

0 commit comments

Comments
 (0)