File tree Expand file tree Collapse file tree 5 files changed +83
-13
lines changed
Expand file tree Collapse file tree 5 files changed +83
-13
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name-template : " v$RESOLVED_VERSION 🌈"
2+ tag-template : " v$RESOLVED_VERSION"
3+ categories :
4+ - title : " 🚀 Features"
5+ labels :
6+ - " feature"
7+ - " enhancement"
8+ - title : " 🐛 Bug Fixes"
9+ labels :
10+ - " fix"
11+ - " bugfix"
12+ - " bug"
13+ - title : " 🧰 Maintenance"
14+ label : " chore"
15+ - title : " 🧺 Miscellaneous" # Everything except ABAP
16+ label : " misc"
17+ change-template : " - $TITLE @$AUTHOR (#$NUMBER)"
18+ change-title-escapes : ' \<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
19+ version-resolver :
20+ major :
21+ labels :
22+ - " major"
23+ minor :
24+ labels :
25+ - " minor"
26+ patch :
27+ labels :
28+ - " patch"
29+ default : patch
30+ template : |
31+ ## Changes
32+ $CHANGES
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Release Drafter
2+
3+ on :
4+ push :
5+ # branches to consider in the event; optional, defaults to all
6+ branches :
7+ - main
8+ - master
9+
10+ jobs :
11+ update_release_draft :
12+ runs-on : ubuntu-latest
13+ steps :
14+ # Drafts your next Release notes as Pull Requests are merged into "master"
15+ - uses : release-drafter/release-drafter@v5
16+ env :
17+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ ---
2+ name : Ansible Galaxy
3+ on :
4+ push :
5+ branches :
6+ - main
7+ - master
8+ release :
9+ types :
10+ - published
11+
12+ jobs :
13+ galaxy :
14+ runs-on : ubuntu-latest
15+ steps :
16+ - uses : actions/checkout@v2
17+ with :
18+ submodules : recursive
19+ - name : Set up Python ${{ matrix.python-version }}
20+ uses : actions/setup-python@v2
21+ with :
22+ python-version : ${{ matrix.python-version }}
23+ - uses : actions/cache@v4
24+ with :
25+ path : ~/.cache/pip
26+ key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
27+ restore-keys : |
28+ ${{ runner.os }}-pip-
29+ - name : Install dependencies
30+ run : |
31+ python -m pip install --upgrade pip
32+ pip install -r requirements.txt
33+ - name : Trigger a new import on Galaxy.
34+ run : ansible-galaxy role import --api-key ${{ secrets.GALAXY_API_KEY }} $(echo ${{ github.repository }} | cut -d/ -f1) $(echo ${{ github.repository }} | cut -d/ -f2)
You can’t perform that action at this time.
0 commit comments