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

permissions:
contents: read

jobs:
release:
uses: alpine-ros/alpine-ros-ci-workflows/.github/workflows/alpine-ros1-release.yaml@main
with:
release-ref: ${{ github.event.release.tag_name }}
release-repo-slug: at-wat/alpine-ros1-releases
source-branch: master
git-user: Atsushi Watanabe
git-email: 8390204+at-wat@users.noreply.github.com
dry-run: false
secrets:
token: ${{ secrets.BLOOM_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:
- master

permissions:
contents: read

jobs:
auto-release:
uses: alpine-ros/alpine-ros-ci-workflows/.github/workflows/auto-release.yaml@main
secrets:
token: ${{ secrets.BLOOM_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:
release-candidate:
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: master
git-user: Atsushi Watanabe
git-email: 8390204+at-wat@users.noreply.github.com
pr-body: "close #${{ github.event.issue.number }}"
pr-assignee: ${{ github.actor }}
secrets:
token: ${{ secrets.BLOOM_GITHUB_TOKEN }}
10 changes: 10 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: ci
on:
pull_request:
push:
branches:
- master

jobs:
test:
uses: alpine-ros/alpine-ros-ci-workflows/.github/workflows/ros1.yaml@main
Loading