diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml new file mode 100644 index 00000000..7b55e631 --- /dev/null +++ b/.github/workflows/auto-author-assign.yml @@ -0,0 +1,15 @@ +# .github/workflows/auto-author-assign.yml +name: Auto Author Assign + +on: + pull_request_target: + types: [ opened, reopened ] + +permissions: + pull-requests: write + +jobs: + assign-author: + runs-on: ubuntu-latest + steps: + - uses: toshimaru/auto-author-assign@v2.0.0 \ No newline at end of file diff --git a/.vscode/quarto.code-snippets b/.vscode/quarto.code-snippets index 6c282635..d2b55fc5 100644 --- a/.vscode/quarto.code-snippets +++ b/.vscode/quarto.code-snippets @@ -76,6 +76,14 @@ "description": "Insert a 3 col table" } + "Insert video": { + "prefix": "video", + "body": [ + "{{< video ${0:Insert link here} >}}" + ], + "description": "Insert video that will be shown" + } + // All our key words are included in this code snippet // The idea is that we can insert this section and then delete the words we aren't interested in // If words are missing then they can be added to the document, and then also added to the code snippet