Skip to content

Commit

Permalink
Merge pull request #62 from dev-sec/central_workflow
Browse files Browse the repository at this point in the history
use centralised issue templates and workflows
  • Loading branch information
schurzi authored Oct 27, 2022
2 parents ea38059 + 9c986af commit 0ebfbfe
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 152 deletions.
42 changes: 0 additions & 42 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

17 changes: 0 additions & 17 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

79 changes: 1 addition & 78 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,81 +7,4 @@ on:

jobs:
generate_changelog:
runs-on: ubuntu-latest
name: create release draft
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: 'Get Previous tag'
id: previoustag
uses: "WyriHaximus/github-action-get-previous-tag@master"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

- name: calculate next version
id: version
uses: patrickjahns/version-drafter-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Generate changelog
uses: charmixer/auto-changelog-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
future_release: ${{ steps.version.outputs.next-version }}

- name: Generate changelog for the release
uses: charmixer/auto-changelog-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
since_tag: ${{ steps.previoustag.outputs.tag }}
future_release: ${{ steps.version.outputs.next-version }}
output: CHANGELOGRELEASE.md

- name: update inspec.yml
uses: mikefarah/[email protected]
with:
cmd: yq w -I4 -i inspec.yml version ${{ steps.version.outputs.next-version }} && sed -i '1i---' inspec.yml

- name: push inspec.yml and changelog
uses: github-actions-x/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'master'
commit-message: 'update inspec.yml and changelog'
files: inspec.yml CHANGELOG.md
name: dev-sec CI
email: [email protected]
rebase: 'true'

- name: Read CHANGELOG.md
id: package
uses: juliangruber/read-file-action@v1
with:
path: ./CHANGELOGRELEASE.md

- uses: actions/checkout@v2
with:
ref: master

- name: Get current commitish
id: current_commitish
run: echo "::set-output name=sha::$(git log -1 --format="%H")"

- name: Check it
run: echo ${{ steps.current_commitish.outputs.sha }}

- name: Create Release draft
id: create_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
release_name: ${{ steps.version.outputs.next-version }}
tag_name: ${{ steps.version.outputs.next-version }}
body: |
${{ steps.package.outputs.content }}
commitish: ${{ steps.current_commitish.outputs.sha }}
draft: true
uses: dev-sec/.github/.github/workflows/baseline-release.yml@main
16 changes: 1 addition & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,4 @@ on:

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ['2.6', '2.7', '3.0']

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
uses: dev-sec/.github/.github/workflows/baseline-test.yml@main

0 comments on commit 0ebfbfe

Please sign in to comment.