Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bot-gorules committed Mar 29, 2023
0 parents commit 7681759
Show file tree
Hide file tree
Showing 120 changed files with 117,954 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/cargo-version-action-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "Release: Core"

on:
workflow_dispatch:
inputs:
version:
description: 'Version'
required: true
default: 'patch'
type: choice
options:
- patch
- minor
- major

jobs:
cargo_version_test:
runs-on: ubuntu-latest
name: A job to test cargo version action
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Set Git author
run: |
git config user.name "Bot"
git config user.email "[email protected]"
- name: Cargo version
uses: ./actions/cargo-version-action
id: semver
with:
version: ${{ github.event.inputs.version }}
tag-prefix: core-v

- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.PAT}}
Loading

0 comments on commit 7681759

Please sign in to comment.