Skip to content
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
115 changes: 0 additions & 115 deletions .github/workflows/ci-auto-release.yml

This file was deleted.

58 changes: 0 additions & 58 deletions .github/workflows/ci-release.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/monthly-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# SPDX-FileCopyrightText: 2026 The P4 Language Consortium
#
# SPDX-License-Identifier: Apache-2.0

name: Monthly Release

on:
workflow_dispatch:
schedule:
- cron: "17 12 1 * *" # At 12:17 on day-of-month 1 (avoid top-of-hour load)

permissions:
contents: write
pull-requests: write

jobs:
monthly-release:
if: ${{ github.repository == 'p4lang/behavioral-model' }}
uses: p4lang/.github/.github/workflows/bump-version.yml@main
with:
tag_prefix: ""
branch_pattern: "release/{version}"
reviewers: fruffy, jafingerhut
28 changes: 28 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# SPDX-FileCopyrightText: 2026 The P4 Language Consortium
#
# SPDX-License-Identifier: Apache-2.0

name: Publish Release

on:
workflow_dispatch:
push:
branches:
- main
paths:
- "VERSION"

permissions:
contents: write

# Cancel any preceding run on the pull request.
concurrency:
group: release-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
publish-release:
if: ${{ github.repository == 'p4lang/behavioral-model' }}
uses: p4lang/.github/.github/workflows/publish-release.yml@main
with:
tag_prefix: ""
Loading