diff --git a/.github/workflows/assigned-pulls-todo.yml b/.github/workflows/assigned-pulls-todo.yml new file mode 100644 index 00000000..95cc63bf --- /dev/null +++ b/.github/workflows/assigned-pulls-todo.yml @@ -0,0 +1,14 @@ +name: Move assigned pull requests into To do +on: + pull_request: + types: [assigned] +jobs: + automate-project-columns: + runs-on: ubuntu-latest + steps: + - uses: alex-page/github-project-automation-plus@v0.3.0 + with: + project: hello + column: two + repo-token: ${{ secrets.GH_TOKEN }} + diff --git a/.github/workflows/opened-issues-triage.yml b/.github/workflows/opened-issues-triage.yml new file mode 100644 index 00000000..05b3d305 --- /dev/null +++ b/.github/workflows/opened-issues-triage.yml @@ -0,0 +1,16 @@ +name: Move new issues into Triage +on: + issues: + types: [opened] +jobs: + automate-project-columns: + runs-on: ubuntu-latest + steps: + - uses: alex-page/github-project-automation-plus@v0.3.0 + with: + project: hello + column: one + repo-token: ${{ secrets.GH_TOKEN }} + + + diff --git a/README.md b/README.md index e02cd858..6f566970 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## Welcome +## Wcome This repository contains the base project part of our on-site GitHub Verified Partner workshop program. It is meant to be used for in-classroom training under the supervision of GitHub coaches. diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 00000000..8a455419 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,12 @@ +sonar.projectKey=RaviSonataGit_workshop-tonkotsu-nodejs +sonar.organization=ravisonatagit + +# This is the name and version displayed in the SonarCloud UI. +#sonar.projectName=workshop-tonkotsu-nodejs +#sonar.projectVersion=1.0 + +# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. +#sonar.sources=. + +# Encoding of the source code. Default is default system encoding +#sonar.sourceEncoding=UTF-8