From 618935ffb9c8ea594027859d8bfd5301196d7b93 Mon Sep 17 00:00:00 2001 From: olivakar Date: Mon, 24 Jul 2023 10:15:14 -0700 Subject: [PATCH 1/5] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 0f10adfc1..e09b0c7af 100644 --- a/README.md +++ b/README.md @@ -80,5 +80,8 @@ a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow th provided by the bot. You will only need to do this once across all repos using our CLA. This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). + + +# Delete line For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. From e50534bbbfed0f3be93b7336d47a8f0c53a5dcd2 Mon Sep 17 00:00:00 2001 From: olivakar Date: Tue, 25 Jul 2023 16:04:52 -0700 Subject: [PATCH 2/5] Create codeql.yml --- .github/workflows/codeql.yml | 52 ++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 000000000..9771ca0f4 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,52 @@ +name: "Code scanning - action" + +on: + push: + pull_request: + schedule: + - cron: '0 19 * * 0' + +jobs: + CodeQL-Build: + + # CodeQL runs on ubuntu-latest and windows-latest + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + with: + # We must fetch at least the immediate parents so that if this is + # a pull request then we can checkout the head. + fetch-depth: 2 + + # If this run was triggered by a pull request event, then checkout + # the head of the pull request instead of the merge commit. + - run: git checkout HEAD^2 + if: ${{ github.event_name == 'pull_request' }} + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + # Override language selection by uncommenting this and choosing your languages + # with: + # languages: go, javascript, csharp, python, cpp, java + + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v1 + + # â„šī¸ Command-line programs to run using the OS shell. + # 📚 https://git.io/JvXDl + + # âœī¸ If the Autobuild fails above, remove it and uncomment the following three lines + # and modify them (or add more) to build your code if your project + # uses a compiled language + + #- run: | + # make bootstrap + # make release + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1 From 7b0bc25dd45f742d72e86b9595957249394ff25a Mon Sep 17 00:00:00 2001 From: olivakar Date: Tue, 25 Jul 2023 16:06:34 -0700 Subject: [PATCH 3/5] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index e09b0c7af..a145e4d56 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,5 @@ provided by the bot. You will only need to do this once across all repos using o This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). - -# Delete line For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. From 259b45c4dc9729f74b73d986003bee77c10a8c1f Mon Sep 17 00:00:00 2001 From: olivakar Date: Tue, 25 Jul 2023 16:07:09 -0700 Subject: [PATCH 4/5] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index a145e4d56..0f10adfc1 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,5 @@ a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow th provided by the bot. You will only need to do this once across all repos using our CLA. This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). - For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. From 2f657300701c71ada7b2ef90780b60d7b91d6d55 Mon Sep 17 00:00:00 2001 From: olivakar Date: Tue, 25 Jul 2023 16:13:34 -0700 Subject: [PATCH 5/5] Update README.md