Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
Adopt reusable workflows (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea committed Mar 29, 2022
1 parent cc940ad commit 8133c1b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 90 deletions.
54 changes: 3 additions & 51 deletions .github/release-drafter.yml
@@ -1,51 +1,3 @@
# Format and labels used aim to match those used by Ansible project
name-template: "$RESOLVED_VERSION"
tag-template: "$RESOLVED_VERSION"
categories:
- title: "Major Changes"
labels:
- "major" # c6476b
- title: "Minor Changes"
labels:
- "feature" # 006b75
- "enhancement" # ededed
- "refactoring"
- title: "Bugfixes"
labels:
- "bug" # fbca04
- title: "Deprecations"
labels:
- "deprecated" # fef2c0
exclude-labels:
- "skip-changelog"
version-resolver:
major:
labels:
- "major"
minor:
labels:
- "minor"
- "feature"
- "enhancement"
- "refactoring"
patch:
labels:
- "patch"
- "bug"
- "deprecated"
default: patch
autolabeler:
- label: "skip-changelog"
title: "/chore/i"
- label: "bug"
title: "/fix/i"
- label: "enhancement"
title: "/(enhance|improve)/i"
- label: "feature"
title: "/feature/i"
- label: "dreprecated"
title: "/deprecat/i"
template: |
$CHANGES
Kudos goes to: $CONTRIBUTORS
---
# see https://github.com/ansible-community/devtools
_extends: ansible-community/devtools
10 changes: 10 additions & 0 deletions .github/workflows/ack.yml
@@ -0,0 +1,10 @@
---
# See https://github.com/ansible-community/devtools/blob/main/.github/workflows/ack.yml
name: ack
on:
pull_request_target:
types: [opened, labeled, unlabeled, synchronize]

jobs:
ack:
uses: ansible-community/devtools/.github/workflows/ack.yml@main
21 changes: 0 additions & 21 deletions .github/workflows/labels.yml

This file was deleted.

13 changes: 13 additions & 0 deletions .github/workflows/push.yml
@@ -0,0 +1,13 @@
---
# See https://github.com/ansible-community/devtools/blob/main/.github/workflows/push.yml
name: push
on:
push:
branches:
- main
- "releases/**"
- "stable/**"

jobs:
ack:
uses: ansible-community/devtools/.github/workflows/push.yml@main
18 changes: 0 additions & 18 deletions .github/workflows/release-drafter.yml

This file was deleted.

0 comments on commit 8133c1b

Please sign in to comment.