Skip to content
Draft
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
29 changes: 29 additions & 0 deletions .github/workflows/alpine-ros2-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: release
on:
release:
types: [published]

permissions:
contents: read

jobs:
test:
uses: alpine-ros/alpine-ros-ci-workflows/.github/workflows/alpine-ros2-release.yaml@main
strategy:
fail-fast: false
matrix:
ROS_DISTRO: ["humble", "jazzy"]
with:
release-ref: ${{ github.event.release.tag_name }}
release-repo-slug: alpine-ros-bot/sample-ros-pkg-release
source-branch: main
ros-distro: ${{ matrix.ROS_DISTRO }}
rosdistro-repo-slug: alpine-ros/rosdistro
rosdistro-repo-branch: alpine-custom-apk
rosdistro-fork-slug: alpine-ros-bot/rosdistro
git-user: alpine-ros-bot
git-email: 214657941+alpine-ros-bot@users.noreply.github.com
dry-run: false
secrets:
token: ${{ secrets.BOT_GITHUB_TOKEN }}
token-pr: ${{ secrets.PR_GITHUB_TOKEN }}
14 changes: 14 additions & 0 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: auto-release
on:
push:
branches:
- main

permissions:
contents: read

jobs:
test:
uses: alpine-ros/alpine-ros-ci-workflows/.github/workflows/auto-release.yaml@main
secrets:
token: ${{ secrets.AR_GITHUB_TOKEN }}
21 changes: 21 additions & 0 deletions .github/workflows/release-candidate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: release-candidate
on:
issues:
types: [opened, reopened, edited]

permissions:
contents: write

jobs:
test:
if: startsWith(github.event.issue.title, 'Release ')
uses: alpine-ros/alpine-ros-ci-workflows/.github/workflows/ros1-release-candidate.yaml@main
with:
release-title: ${{ github.event.issue.title }}
branch: main
git-user: alpine-ros-bot
git-email: 214657941+alpine-ros-bot@users.noreply.github.com
pr-body: "close #${{ github.event.issue.number }}"
pr-assignee: ${{ github.actor }}
secrets:
token: ${{ secrets.AR_GITHUB_TOKEN }}
Loading