diff --git a/.github/workflows/import.yml b/.github/workflows/import.yml index f3542c0c1..9498d0477 100644 --- a/.github/workflows/import.yml +++ b/.github/workflows/import.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - branch: [stable, beta] + branch: [main] steps: - name: Checkout uses: actions/checkout@v4 @@ -31,7 +31,7 @@ jobs: - name: Fetch synsets run: npx isv synsets pull env: - ISV_BETA: ${{ matrix.branch != 'stable' && 'true' || 'false' }} + ISV_BETA: 'true' ISV_DEBUG: 'true' ISV_ENCRYPTION_KEY: ${{ secrets.ISV_ENCRYPTION_KEY }} ISV_ENCRYPTION_IV: ${{ secrets.ISV_ENCRYPTION_IV }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f32366572..c822da8a0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,7 +2,7 @@ name: Lint on: pull_request: - branches: [ beta, stable ] + branches: [main] jobs: build: diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index a3421ccc4..ffa93937e 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -2,7 +2,7 @@ name: Merge into Google Sheets on: pull_request: types: [closed] - branches: [beta] + branches: [main] jobs: push: if: github.event.pull_request.merged == true @@ -33,7 +33,7 @@ jobs: - name: Push changes to Google Sheets run: npx isv synsets push --only ${{ steps.the_changes.outputs.all_changed_files }} env: - ISV_BETA: ${{ matrix.branch != 'stable' && 'true' || 'false' }} + ISV_BETA: 'true' ISV_DEBUG: 'true' ISV_ENCRYPTION_KEY: ${{ secrets.ISV_ENCRYPTION_KEY }} ISV_ENCRYPTION_IV: ${{ secrets.ISV_ENCRYPTION_IV }}