Skip to content

Commit

Permalink
Merge pull request #7 from buluma/testing
Browse files Browse the repository at this point in the history
changelog
  • Loading branch information
buluma committed Apr 15, 2022
2 parents e6299c4 + 2791b17 commit 6af6559
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 2 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release_drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,36 @@ jobs:
# disable-autolabeler: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
changelog_draft:
runs-on: ubuntu-latest

steps:
- name: Checkout dj-wasabi-release repo
uses: actions/checkout@v2
with:
repository: dj-wasabi/dj-wasabi-release
path: dj-wasabi-release

- name: Checkout current repo
uses: actions/checkout@v2
with:
path: main

- name: Commit Changelog file
run: |
# We are cloned in the 'main' directory and the dj-wasabi-release
# repository is the 'dj-wasabi-release' next to 'main'
cd main
# Generate CHANGELOG.md file
../dj-wasabi-release/release.sh -d
# Let commit the changes if there are any? (Well there should be!)
if [[ $(git status | grep -c 'CHANGELOG.md' || true) -gt 0 ]]
then echo "Committing file"
git config --global user.name 'Shadow Walker [GH bot]'
git config --global user.email 'github@buluma.me.ke'
git add CHANGELOG.md
git commit -m "Updated CHANGELOG.md on \"$(date "+%Y-%m-%d %H:%M:%S")\"" CHANGELOG.md
git push
fi
env:
CHANGELOG_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Changelog

## [v0.1.4](https://github.com/buluma/ansible-role-ansible_lint/tree/v0.1.4) (2022-03-31)

[Full Changelog](https://github.com/buluma/ansible-role-ansible_lint/compare/v0.1.3...v0.1.4)

**Merged pull requests:**

- versions bump [\#6](https://github.com/buluma/ansible-role-ansible_lint/pull/6) ([buluma](https://github.com/buluma))
- Bump buluma/gh-action-auto-merge-dependabot-updates from 1.0.3 to 1.0.4 [\#5](https://github.com/buluma/ansible-role-ansible_lint/pull/5) ([dependabot[bot]](https://github.com/apps/dependabot))

## [v0.1.3](https://github.com/buluma/ansible-role-ansible_lint/tree/v0.1.3) (2022-03-23)

[Full Changelog](https://github.com/buluma/ansible-role-ansible_lint/compare/v0.1.2...v0.1.3)

**Merged pull requests:**

- todo [\#4](https://github.com/buluma/ansible-role-ansible_lint/pull/4) ([buluma](https://github.com/buluma))

## [v0.1.2](https://github.com/buluma/ansible-role-ansible_lint/tree/v0.1.2) (2022-03-23)

[Full Changelog](https://github.com/buluma/ansible-role-ansible_lint/compare/v0.1.1...v0.1.2)

**Closed issues:**

- Add to tracker [\#2](https://github.com/buluma/ansible-role-ansible_lint/issues/2)

## [v0.1.1](https://github.com/buluma/ansible-role-ansible_lint/tree/v0.1.1) (2022-03-22)

[Full Changelog](https://github.com/buluma/ansible-role-ansible_lint/compare/v0.1.0...v0.1.1)

**Merged pull requests:**

- Testing [\#3](https://github.com/buluma/ansible-role-ansible_lint/pull/3) ([buluma](https://github.com/buluma))
- fedora test [\#1](https://github.com/buluma/ansible-role-ansible_lint/pull/1) ([buluma](https://github.com/buluma))

## [v0.1.0](https://github.com/buluma/ansible-role-ansible_lint/tree/v0.1.0) (2022-03-22)

[Full Changelog](https://github.com/buluma/ansible-role-ansible_lint/compare/79088004016ad3c557172a426daa737d58320825...v0.1.0)



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Apache License
Version 2.0, 03 2022
Version 2.0, 04 2022
http://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ Some roles can't run on a specific distribution or version. Here are some except

If you find issues, please register them in [GitHub](https://github.com/buluma/ansible-role-ansible_lint/issues)

## [Changelog](#changelog)

[Role History](https://github.com/buluma/ansible-role-ansible_lint/blob/main/CHANGELOG.md)

## [License](#license)

Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ galaxy_info:
role_name: ansible_lint
description: Install ansible-lint on your system.
license: Apache-2.0
company: none
company: ShadowNet
min_ansible_version: "2.10"

platforms:
Expand Down

0 comments on commit 6af6559

Please sign in to comment.