From 52f686440cf110486f6bc3045c3136edc8b50858 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 03:12:11 +0000 Subject: [PATCH] fix: update credentials for translation action in --- .github/workflows/workflow_file.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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 0000000..fb4d018 --- /dev/null +++ b/.github/workflows/workflow_file.yml @@ -0,0 +1,27 @@ +name: CI + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + + - name: Run translation action + uses: usthe/issues-translate-action@v2.7 + with: + token: ${{ secrets.CORRECT_SECRET }} + + - name: Build with Maven + run: mvn -B package --file pom.xml