Skip to content

Commit

Permalink
Merge pull request #35 from thenilsdev/develop
Browse files Browse the repository at this point in the history
1.0.3
  • Loading branch information
nidotls authored Jan 3, 2021
2 parents f214afc + 0cb2408 commit 02e45e3
Show file tree
Hide file tree
Showing 8 changed files with 5,851 additions and 4,393 deletions.
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ updates:
# Check the npm registry for updates every day (weekdays)
schedule:
interval: 'daily'
target-branch: "develop"
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release Github

on:
push:
tags:
- '*'

jobs:
build:
name: Release Github
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get Git Changelog
id: get_changelog
uses: thenilsdev/[email protected]
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ${{ steps.get_changelog.outputs.log }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<a href="https://github.com/actions/typescript-action/actions"><img alt="typescript-action status" src="https://github.com/actions/typescript-action/workflows/build-test/badge.svg"></a>
<a href="https://github.com/thenilsdev/git-log-action/actions"><img alt="typescript-action status" src="https://github.com/thenilsdev/git-log-action/workflows/build-test/badge.svg"></a>
</p>

# Create a JavaScript Action using TypeScript
Expand Down
13 changes: 13 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Security Policy

## Supported Versions

| Version | Supported |
| ------- | ------------------ |
| 1.0.2 | :white_check_mark: |
| 1.0.1 | :x: |
| 1.0.0 | :x: |

## Reporting a Vulnerability

Contact me via email on [email protected] to report a vulnerability.
Loading

0 comments on commit 02e45e3

Please sign in to comment.