Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(release): branch protection improvements #58

Merged
merged 6 commits into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/release-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@
"release-type": "simple",
"packages": {
".": {
"type": "generic"
"type": "generic",
"extra-files": [
{
"type": "json",
"path": ".github/prerelease-manifest.json",
"jsonpath": "$[\".\"]"
}
]
}
}
}
4 changes: 3 additions & 1 deletion .github/release-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
{".":"0.3.0"}
{
".": "0.3.0"
}
4 changes: 2 additions & 2 deletions .github/workflows/codeql-package.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: "Security and Code-Quality scan with CodeQL - Package"

on:
push:
branches: [ "main" ]
# Triggers the workflow on pull request events but only for default and protected branches
pull_request:
branches: [ "main" ]
# Triggers the workflow on a schedule every Monday at 6:39 AM
schedule:
- cron: '39 6 * * 1'
# Allows you to run this workflow manually from the Actions tab
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-samples-quickstart.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: "Security and Code-Quality scan with CodeQL - Quickstart Sample"

on:
push:
branches: [ "main" ]
# Triggers the workflow on pull request events but only for default and protected branches
pull_request:
branches: [ "main" ]
# Triggers the workflow on a schedule every Monday at 6:36 AM
schedule:
- cron: '28 6 * * 1'
- cron: '36 6 * * 1'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Triggers the workflow when it is called from another workflow
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow performs a full End 2 End test of the App
# It runs the test on the last 5 iOS releases.

name: E2E Test with latest FusionAuth
name: E2E Test with latest FusionAuth and latest iOS

on:
# Triggers the workflow on pull request events but only for default and protected branches
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mobsf.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: "Vulnerability Scan with MobSF"

on:
push:
branches: [ "main" ]
# Triggers the workflow on pull request events but only for default and protected branches
pull_request:
branches: [ "main" ]
# Triggers the workflow on a schedule every Monday at 6:30 AM
schedule:
- cron: '30 6 * * 1'
# Allows you to run this workflow manually from the Actions tab
Expand Down
43 changes: 3 additions & 40 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,32 +53,12 @@ jobs:
name: Run Prerelease E2E Tests
uses: ./.github/workflows/e2e-test-fusionauth-latest-ios-latest.yml

# This job runs a MobSF scan as a prerequisite for the prerelease-prep
mobsf:
name: Run Prerelease MobSF Scan
uses: ./.github/workflows/mobsf.yml

# This job runs a SwiftLint scan as a prerequisite for the prerelease-prep
swiftlint:
name: Run Prerelease Swiftlint
uses: ./.github/workflows/swiftlint.yml

# This job runs a CodeQL package scan as a prerequisite for the prerelease-prep
codeql-package:
name: Run Prerelease CodeQL Package Scan
uses: ./.github/workflows/codeql-package.yml

# This job runs a CodeQL samples quickstart scan as a prerequisite for the prerelease-prep
codeql-samples-quickstart:
name: Run Prerelease CodeQL Samples Quickstart Scan
uses: ./.github/workflows/codeql-samples-quickstart.yml

# This job creates or finalizes a prerelease pull request or finalizes a release pull request
# and provides the necessary outputs for the subsequent jobs
prerelease-prep:
name: Create Prerelease Pull Request
runs-on: ubuntu-latest
needs: [ label-check, initial-e2e-test, mobsf, swiftlint, codeql-package, codeql-samples-quickstart ]
needs: [ label-check, initial-e2e-test ]
outputs:
# This output is used to determine if a release was created
releases_created: ${{ steps.release.outputs.releases_created }}
Expand All @@ -91,6 +71,7 @@ jobs:
with:
config-file: ".github/prerelease-config.json"
manifest-file: ".github/prerelease-manifest.json"
token: ${{ secrets.RELEASE_WORKFLOW_TOKEN }}

# This job runs tests before the creation of the prerelease
prerelease-test:
Expand Down Expand Up @@ -137,6 +118,7 @@ jobs:
with:
config-file: ".github/release-config.json"
manifest-file: ".github/release-manifest.json"
token: ${{ secrets.RELEASE_WORKFLOW_TOKEN }}

# This job runs post-prerelease steps
post-prerelease:
Expand All @@ -162,25 +144,6 @@ jobs:
run: |
echo "Running release step!"

- name: Checkout
uses: actions/[email protected]

- name: Sync prerelease manifest
env:
MANIFEST_PATH: .github/prerelease-manifest.json
RELEASE_TAG: ${{ needs.prerelease-prep.outputs.tag_name }}
run: |
jq --arg tag "${RELEASE_TAG//v/}" '.["."] = $tag' $MANIFEST_PATH > temp.json \
&& mv temp.json $MANIFEST_PATH

- name: Commit change
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add . $MANIFEST_PATH
git commit -m "chore: sync release manifests"
git push

# This job runs post-release steps
post-release:
name: Post Release Steps
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/swiftlint.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: "Code-Quality scan with SwiftLint"

on:
push:
branches: [ "main" ]
# Triggers the workflow on pull request events but only for default and protected branches
pull_request:
branches: [ "main" ]
# Triggers the workflow on a schedule every Monday at 6:33 AM
schedule:
- cron: '33 6 * * 1'
# Allows you to run this workflow manually from the Actions tab
Expand Down
Loading