diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 01cfb8cc6..05c699d72 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -24,7 +24,7 @@ Fixes ${ISSUE_URL} #### Offline Build CI (label-based) Add one or more labels to trigger offline builds: - `build-default` - Full production build (ansible, terraform, all packages) -- `build-demo` - Demo/WIAB build +- `build-dev` - WIAB/dev build - `build-wiab-staging` - WIAB-staging build - `build-min` - Minimal build (fastest, essential charts only) - `build-all` - Run all three builds diff --git a/.github/workflows/offline.yml b/.github/workflows/offline.yml index 61863911a..0df59627c 100644 --- a/.github/workflows/offline.yml +++ b/.github/workflows/offline.yml @@ -179,9 +179,9 @@ jobs: env: DOCKER_LOGIN: '${{ secrets.DOCKER_LOGIN }}' - # Build demo profile + # Build dev profile build-dev: - name: Build demo profile + name: Build dev profile if: | (github.event_name == 'push' && github.ref == 'refs/heads/master') || contains(github.event.pull_request.labels.*.name, 'build-all') || @@ -205,13 +205,13 @@ jobs: id: upload_name run: echo "UPLOAD_NAME=$GITHUB_SHA" >> $GITHUB_OUTPUT - - name: Process the demo profile build + - name: Process the dev profile build run: ./offline/demo-build/build.sh env: GPG_PRIVATE_KEY: "${{ secrets.GPG_PRIVATE_KEY }}" DOCKER_LOGIN: "${{ secrets.DOCKER_LOGIN }}" - - name: Copy demo build assets tarball to S3 + - name: Copy dev build assets tarball to S3 run: | aws s3 cp offline/demo-build/output/assets.tgz s3://public.wire.com/artifacts/wire-server-deploy-static-demo-${{ steps.upload_name.outputs.UPLOAD_NAME }}.tgz echo "Uploaded to: https://s3-$AWS_REGION.amazonaws.com/public.wire.com/artifacts/wire-server-deploy-static-demo-${{ steps.upload_name.outputs.UPLOAD_NAME }}.tgz" @@ -237,7 +237,7 @@ jobs: env: HCLOUD_TOKEN: '${{ secrets.HCLOUD_TOKEN }}' - - name: Cleanup demo build assets + - name: Cleanup dev build assets run: rm -rf offline/demo-build/output/ # Build min profile diff --git a/changelog.d/5-bug-fixes/fix-github-workflow-pr-references b/changelog.d/5-bug-fixes/fix-github-workflow-pr-references new file mode 100644 index 000000000..f7191a2d9 --- /dev/null +++ b/changelog.d/5-bug-fixes/fix-github-workflow-pr-references @@ -0,0 +1 @@ +FIXED: github workflow and PR template references for wiab-dev