From 8408ccd0d3f47a4c8d3daa737e073e899bb88ab5 Mon Sep 17 00:00:00 2001 From: Marcus Hughes Date: Fri, 3 Nov 2023 02:01:21 -0600 Subject: [PATCH 1/2] Create CODE_OF_CONDUCT.md --- CODE_OF_CONDUCT.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..1a73984 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1 @@ +[Please see our mission-wide code of conduct here.](https://github.com/punch-mission/punch-mission/blob/main/CODE_OF_CONDUCT.md) From c520054d68c2505ea370384397509f626950eee5 Mon Sep 17 00:00:00 2001 From: Marcus Hughes Date: Fri, 3 Nov 2023 02:02:57 -0600 Subject: [PATCH 2/2] Create weeklypr.yaml --- .github/workflows/weeklypr.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/weeklypr.yaml diff --git a/.github/workflows/weeklypr.yaml b/.github/workflows/weeklypr.yaml new file mode 100644 index 0000000..ed53654 --- /dev/null +++ b/.github/workflows/weeklypr.yaml @@ -0,0 +1,13 @@ +on: + schedule: + - cron: '0 0 * * THU' +name: weekly PR +jobs: + createPullRequest: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: create pull request + run: gh pr create -B main -H develop --title 'Weekly merge to develop' --body 'Created by Github action' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}