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

Commit 8133c1b

Browse files
authored
Adopt reusable workflows (#127)
1 parent cc940ad commit 8133c1b

File tree

5 files changed

+26
-90
lines changed

5 files changed

+26
-90
lines changed

.github/release-drafter.yml

Lines changed: 3 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,3 @@
1-
# Format and labels used aim to match those used by Ansible project
2-
name-template: "$RESOLVED_VERSION"
3-
tag-template: "$RESOLVED_VERSION"
4-
categories:
5-
- title: "Major Changes"
6-
labels:
7-
- "major" # c6476b
8-
- title: "Minor Changes"
9-
labels:
10-
- "feature" # 006b75
11-
- "enhancement" # ededed
12-
- "refactoring"
13-
- title: "Bugfixes"
14-
labels:
15-
- "bug" # fbca04
16-
- title: "Deprecations"
17-
labels:
18-
- "deprecated" # fef2c0
19-
exclude-labels:
20-
- "skip-changelog"
21-
version-resolver:
22-
major:
23-
labels:
24-
- "major"
25-
minor:
26-
labels:
27-
- "minor"
28-
- "feature"
29-
- "enhancement"
30-
- "refactoring"
31-
patch:
32-
labels:
33-
- "patch"
34-
- "bug"
35-
- "deprecated"
36-
default: patch
37-
autolabeler:
38-
- label: "skip-changelog"
39-
title: "/chore/i"
40-
- label: "bug"
41-
title: "/fix/i"
42-
- label: "enhancement"
43-
title: "/(enhance|improve)/i"
44-
- label: "feature"
45-
title: "/feature/i"
46-
- label: "dreprecated"
47-
title: "/deprecat/i"
48-
template: |
49-
$CHANGES
50-
51-
Kudos goes to: $CONTRIBUTORS
1+
---
2+
# see https://github.com/ansible-community/devtools
3+
_extends: ansible-community/devtools

.github/workflows/ack.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
# See https://github.com/ansible-community/devtools/blob/main/.github/workflows/ack.yml
3+
name: ack
4+
on:
5+
pull_request_target:
6+
types: [opened, labeled, unlabeled, synchronize]
7+
8+
jobs:
9+
ack:
10+
uses: ansible-community/devtools/.github/workflows/ack.yml@main

.github/workflows/labels.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/push.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
# See https://github.com/ansible-community/devtools/blob/main/.github/workflows/push.yml
3+
name: push
4+
on:
5+
push:
6+
branches:
7+
- main
8+
- "releases/**"
9+
- "stable/**"
10+
11+
jobs:
12+
ack:
13+
uses: ansible-community/devtools/.github/workflows/push.yml@main

.github/workflows/release-drafter.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)