From 726850e074eeac9e399ac358c1821745142ac936 Mon Sep 17 00:00:00 2001 From: = Date: Tue, 11 Jun 2024 09:23:37 -0700 Subject: [PATCH 1/2] add security considerations check and pr template --- .github/pull_request_template.md | 7 +++++++ .github/workflows/security-considerations.yml | 12 ++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .github/pull_request_template.md create mode 100644 .github/workflows/security-considerations.yml diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..39ca41e --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,7 @@ +## Changes proposed in this pull request: +- +- +- + +## security considerations +[Note the any security considerations here, or make note of why there are none] diff --git a/.github/workflows/security-considerations.yml b/.github/workflows/security-considerations.yml new file mode 100644 index 0000000..daf10f9 --- /dev/null +++ b/.github/workflows/security-considerations.yml @@ -0,0 +1,12 @@ +name: Security Considerations + +on: + pull_request: + types: [opened, edited, reopened] + branches: [main, master, develop] + +jobs: + security-considerations: + runs-on: ubuntu-latest + steps: + - uses: cloud-gov/security-considerations-action@main From c6638df3d41b63325de995aef40ffd7311269fa3 Mon Sep 17 00:00:00 2001 From: = Date: Tue, 11 Jun 2024 09:25:37 -0700 Subject: [PATCH 2/2] drop pr template since we have a global one --- .github/pull_request_template.md | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 39ca41e..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,7 +0,0 @@ -## Changes proposed in this pull request: -- -- -- - -## security considerations -[Note the any security considerations here, or make note of why there are none]