This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
forked from poblin-orange/k3s-boshrelease
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(github): commit generated files
- Loading branch information
Showing
1 changed file
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: build-and-release | |
|
||
on: | ||
push: | ||
# not not consider simplec commit | ||
# not consider simple commit | ||
branches: | ||
- '!*' | ||
# consider only release and pre-release tags | ||
|
@@ -50,3 +50,17 @@ jobs: | |
asset_content_type: application/zip | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: EndBug/add-and-commit@1bad3abcf0d6ec49a5857d124b0bfb52dc7bb081 # v9.1.3: https://github.com/EndBug/add-and-commit/commits/v9.1.3 | ||
with: | ||
# The arguments for the `git add` command (see the paragraph below for more info) | ||
# Default: '.' | ||
add: 'releases/k3s' | ||
# Determines the way the action fills missing author name and email. Three options are available: | ||
# - github_actor -> UserName <[email protected]> | ||
# - user_info -> Your Display Name <[email protected]> | ||
# - github_actions -> github-actions <email associated with the github logo> | ||
# Default: github_actor | ||
default_author: github_actions | ||
message: "Add missing generated files for ${{ steps.create-bosh-release.outputs.version }}" | ||
|