From 73a892c6834316441c76be3f695cfa30d0e37129 Mon Sep 17 00:00:00 2001 From: FarisZR <35614734+FarisZR@users.noreply.github.com> Date: Thu, 1 Feb 2024 19:17:26 +0100 Subject: [PATCH] add action to sync secrets to cups-1 --- .github/workflows/sync-secrets-to-cups-1.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/sync-secrets-to-cups-1.yml diff --git a/.github/workflows/sync-secrets-to-cups-1.yml b/.github/workflows/sync-secrets-to-cups-1.yml new file mode 100644 index 00000000..45b1d353 --- /dev/null +++ b/.github/workflows/sync-secrets-to-cups-1.yml @@ -0,0 +1,19 @@ +name: sync secrets + +on: + workflow_dispatch: + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - name: sync + uses: jpoehnelt/secrets-sync-action@master + with: + SECRETS: ".*" + repositories_list_regex: false + REPOSITORIES: | + aosus/cups-1 + aosus/hyper-aosus + DRY_RUN: true + GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }} \ No newline at end of file