-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #388 from linode/dev
Release v5.14.0
- Loading branch information
Showing
27 changed files
with
582 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# PR Labels | ||
- name: new-feature | ||
description: for new features in the changelog. | ||
color: 225fee | ||
- name: improvement | ||
description: for improvements in existing functionality in the changelog. | ||
color: 22ee47 | ||
- name: repo-ci-improvement | ||
description: for improvements in the repository or CI workflow in the changelog. | ||
color: c922ee | ||
- name: bugfix | ||
description: for any bug fixes in the changelog. | ||
color: ed8e21 | ||
- name: documentation | ||
description: for updates to the documentation in the changelog. | ||
color: d3e1e6 | ||
- name: dependencies | ||
description: dependency updates usually from dependabot | ||
color: 5c9dff | ||
- name: testing | ||
description: for updates to the testing suite in the changelog. | ||
color: 933ac9 | ||
- name: breaking-change | ||
description: for breaking changes in the changelog. | ||
color: ff0000 | ||
- name: ignore-for-release | ||
description: PRs you do not want to render in the changelog | ||
color: 7b8eac | ||
- name: do-not-merge | ||
description: PRs that should not be merged until the commented issue is resolved | ||
color: eb1515 | ||
# Issue Labels | ||
- name: enhancement | ||
description: issues that request a enhancement | ||
color: 22ee47 | ||
- name: bug | ||
description: issues that report a bug | ||
color: ed8e21 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- ignore-for-release | ||
categories: | ||
- title: ⚠️ Breaking Change | ||
labels: | ||
- breaking-change | ||
- title: 🐛 Bug Fixes | ||
labels: | ||
- bugfix | ||
- title: 🚀 New Features | ||
labels: | ||
- new-feature | ||
- title: 💡 Improvements | ||
labels: | ||
- improvement | ||
- title: 🧪 Testing Improvements | ||
labels: | ||
- testing | ||
- title: ⚙️ Repo/CI Improvements | ||
labels: | ||
- repo-ci-improvement | ||
- title: 📖 Documentation | ||
labels: | ||
- documentation | ||
- title: 📦 Dependency Updates | ||
labels: | ||
- dependencies | ||
- title: Other Changes | ||
labels: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: labeler | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
paths: | ||
- '.github/labels.yml' | ||
- '.github/workflows/labeler.yml' | ||
pull_request: | ||
paths: | ||
- '.github/labels.yml' | ||
- '.github/workflows/labeler.yml' | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v4 | ||
- | ||
name: Run Labeler | ||
uses: crazy-max/ghaction-github-labeler@de749cf181958193cb7debf1a9c5bb28922f3e1b | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
yaml-file: .github/labels.yml | ||
dry-run: ${{ github.event_name == 'pull_request' }} | ||
exclude: | | ||
help* | ||
*issue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Release Ansible cross repository test | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
types: [opened] # Workflow will only be executed when PR is opened to main branch | ||
workflow_dispatch: # Manual trigger | ||
|
||
|
||
jobs: | ||
ansible_integration_test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout linode_api4 repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: update packages | ||
run: sudo apt-get update -y | ||
|
||
- name: install make | ||
run: sudo apt-get install -y build-essential | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Install linode_api4 | ||
run: make install | ||
|
||
- name: checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: linode/ansible_linode | ||
path: .ansible/collections/ansible_collections/linode/cloud | ||
|
||
- name: install dependencies | ||
run: | | ||
cd .ansible/collections/ansible_collections/linode/cloud | ||
pip install -r requirements.txt -r requirements-dev.txt --upgrade-strategy only-if-needed | ||
- name: install ansible dependencies | ||
run: ansible-galaxy collection install amazon.aws:==6.0.1 | ||
|
||
- name: install collection | ||
run: | | ||
cd .ansible/collections/ansible_collections/linode/cloud | ||
make install | ||
- name: replace existing keys | ||
run: | | ||
cd .ansible/collections/ansible_collections/linode/cloud | ||
rm -rf ~/.ansible/test && mkdir -p ~/.ansible/test && ssh-keygen -m PEM -q -t rsa -N '' -f ~/.ansible/test/id_rsa | ||
- name: run tests | ||
run: | | ||
cd .ansible/collections/ansible_collections/linode/cloud | ||
make testall | ||
env: | ||
LINODE_API_TOKEN: ${{ secrets.LINODE_TOKEN }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Read the Docs configuration file for Sphinx projects | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
version: 2 | ||
build: | ||
os: ubuntu-lts-latest | ||
tools: | ||
python: latest | ||
sphinx: | ||
configuration: docs/conf.py | ||
python: | ||
install: | ||
- method: pip | ||
path: . | ||
extra_requirements: | ||
- doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.