Skip to content

Commit

Permalink
Update Readme and add new Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
secondnetwork authored Mar 11, 2023
1 parent 47e895c commit 98efe26
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/auto-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ jobs:
with:
title: Icons Release ID:${{ github.run_number }}
body: Auto Update Icons ID:${{ github.run_number }} RUN_ID:${{ github.run_id }}
commit-message: feat:automated change Icons Release RUN_ID:${{ github.run_id }}
commit-message: feat:automated change Icons Release ID:${{ github.run_number }}
base: main
delete-branch: true
29 changes: 29 additions & 0 deletions .github/workflows/release-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: release version
on:
workflow_dispatch:

permissions:
contents: write
issues: write
pull-requests: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
release_branches: main
pre_release_branches: stage
default_prerelease_bump: false
tag_prefix: "v"
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ A package to easily make use of [tabler-icons](https://github.com/tabler/tabler-

For a full list of available icons see [the SVG directory](resources/svg) or preview them at [tabler-icons.io](https://tabler-icons.io/).


## Info of update Icons Release

This repository check for a new Icons Release every week with Github Actions and make a pull request

## Requirements

- PHP 7.4 or higher
Expand Down

0 comments on commit 98efe26

Please sign in to comment.