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

Boomerang docs #118

Open
wants to merge 17 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
785c1e9
Fixed regex in gh-pages.yml to preserve dots in version names
roshansamantaray Mar 11, 2025
11d7921
Fixed version name sanitization and add PR preview deployment
roshansamantaray Mar 11, 2025
88baa42
Set custom workflow name for Boomerang
roshansamantaray Mar 12, 2025
5581de3
Simplified the reference path for the reusable workflow
roshansamantaray Mar 13, 2025
b3ac75c
Changed branch name from develop to roshansamantaray-patch-1 for test…
roshansamantaray Mar 13, 2025
9bc8458
Changed branch name from develop to roshansamantaray-patch-1 for test…
roshansamantaray Mar 13, 2025
525a824
Added two caller functions deploy-branch-snapshot.yml and deploy-pr-p…
roshansamantaray Mar 26, 2025
a2941c2
Update .github/workflows/deploy-branch-snapshot.yml
swissiety Mar 26, 2025
9d28b21
Fixed the indentation in gh-pages.yml
roshansamantaray Mar 27, 2025
9cf08e5
Changed the branch name from roshansamantaray-patch-1 to develop for …
roshansamantaray Apr 3, 2025
ed9d0ee
Merge branch 'boomerang-docs' of https://github.com/secure-software-e…
roshansamantaray Apr 3, 2025
31ecf42
Changed the workflow paths in deploy-branch-snapshot.yml and deploy-p…
roshansamantaray Apr 7, 2025
c7c47de
Changed the workflow paths again in deploy-branch-snapshot.yml and de…
roshansamantaray Apr 7, 2025
a97ad80
Fixed the invalid types for 'on'
roshansamantaray Apr 7, 2025
f2bc54a
Fixed the indentation in on for deploy-pr-preview.yml
roshansamantaray Apr 7, 2025
ccde5be
Fixed a typo
roshansamantaray Apr 7, 2025
5e30198
Removed gh-pages.yml
roshansamantaray Apr 9, 2025
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
26 changes: 26 additions & 0 deletions .github/workflows/deploy-branch-snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Branch Documentation Snapshot

permissions:
pages: write
deployments: write
contents: write

on:
push:
branches:
- main
- develop

paths:
- 'mkdocs.yml'
- 'docs/**'
- '.github/workflows/deploy-branch-snapshot.yml'

concurrency: pages

jobs:
deploy-snapshot:
uses: secure-software-engineering/actions/.github/workflows/pages-branch-snapshot.yml@develop
with:
latest_branch: develop
version: "maven"
28 changes: 28 additions & 0 deletions .github/workflows/deploy-pr-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: PR Documentation Preview

permissions:
pages: write
deployments: write
contents: write
pull-requests: write

on:
pull_request:
types:
- opened
- closed
- synchronize
- reopened
paths:
- 'mkdocs.yml'
- 'docs/**'
- '.github/workflows/deploy-pr-preview.yml'

concurrency: pages

jobs:
deploy-preview:
uses: secure-software-engineering/actions/.github/workflows/pages-pr-preview.yml@develop
with:
enable_comment: true
title_prefix: "Boomerang PR Preview: "
54 changes: 0 additions & 54 deletions .github/workflows/gh-pages.yml

This file was deleted.