From 2a3e9cb2491fc2207a6a7d2908f869404313acc6 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 13:17:59 +0000 Subject: [PATCH] feat/fix: Add necessary inputs and secrets to GitH --- .github/workflows/workflow_file.yml | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/workflow_file.yml diff --git a/.github/workflows/workflow_file.yml b/.github/workflows/workflow_file.yml new file mode 100644 index 0000000000000..7047c00c464b5 --- /dev/null +++ b/.github/workflows/workflow_file.yml @@ -0,0 +1,31 @@ +name: Workflow Name + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.x + + - name: Set up Google Cloud credentials + uses: google-github-actions/auth@v1 + with: + workload_identity_provider: + # or + credentials_json: ${{ secrets.GOOGLE_CREDENTIALS }} + + # Rest of the workflow steps...