From 37b0cc986a9e0e640a9ded82399c9cf22f1e3610 Mon Sep 17 00:00:00 2001 From: Amine Mouafik Date: Thu, 19 Sep 2019 19:37:27 +0700 Subject: #60 Explicitly set upstream for pull bot --- .github/pull.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .github/pull.yml (limited to '.github') diff --git a/.github/pull.yml b/.github/pull.yml new file mode 100644 index 000000000..edb4269b3 --- /dev/null +++ b/.github/pull.yml @@ -0,0 +1,4 @@ +version: "1" +rules: + - base: master + upstream: meetfranz/franz -- cgit v1.2.3-70-g09d2 From 7462037a091ecfb6cc57ddc8319bd6999c1f4578 Mon Sep 17 00:00:00 2001 From: Amine Mouafik Date: Thu, 19 Sep 2019 20:09:26 +0700 Subject: 60 Remove pull config file --- .github/pull.yml | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 .github/pull.yml (limited to '.github') diff --git a/.github/pull.yml b/.github/pull.yml deleted file mode 100644 index edb4269b3..000000000 --- a/.github/pull.yml +++ /dev/null @@ -1,4 +0,0 @@ -version: "1" -rules: - - base: master - upstream: meetfranz/franz -- cgit v1.2.3-70-g09d2 From a95dd97b71707d4002d323ebd5e33a9a85eda31c Mon Sep 17 00:00:00 2001 From: Amine Mouafik Date: Thu, 19 Sep 2019 20:09:46 +0700 Subject: Remove FUNDING.yml test for now --- .github/FUNDING.yml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .github/FUNDING.yml (limited to '.github') diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index ea93748ed..000000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -# These are supported funding model platforms - -github: [adlk, vantezzen, kytwb] -- cgit v1.2.3-70-g09d2 From 52a2e379f8cecda8f8e60741c9743fc94d51d6bd Mon Sep 17 00:00:00 2001 From: Amine Mouafik Date: Mon, 23 Sep 2019 23:24:49 +0700 Subject: Setup repo-sync workflow --- .github/workflow/repo-sync.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflow/repo-sync.yml (limited to '.github') diff --git a/.github/workflow/repo-sync.yml b/.github/workflow/repo-sync.yml new file mode 100644 index 000000000..fce0721c7 --- /dev/null +++ b/.github/workflow/repo-sync.yml @@ -0,0 +1,25 @@ +name: Repo Sync + +on: + schedule: + - cron: "*/15 * * * *" + +jobs: + repo-sync: + name: Repo Sync + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: repo-sync/github-sync@v2 + name: Sync repository to branch + with: + source_repo: ${{ secrets.SOURCE_REPO }} + source_branch: "master" + destination_branch: ${{ secrets.INTERMEDIATE_BRANCH }} + github_token: ${{ secrets.GITHUB_TOKEN }} + - uses: repo-sync/pull-request@v2 + name: Create pull request + with: + source_branch: ${{ secrets.INTERMEDIATE_BRANCH }} + destination_branch: "master" + github_token: ${{ secrets.GITHUB_TOKEN }} -- cgit v1.2.3-70-g09d2