-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update action for new actions syntax
- Loading branch information
Showing
3 changed files
with
55 additions
and
3 deletions.
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
FROM ruby:2.6 | ||
FROM ruby:2.7 | ||
|
||
LABEL com.github.actions.name="StandardRB checks" | ||
LABEL com.github.actions.name="StandardRB" | ||
LABEL com.github.actions.description="Lint your Ruby code in parallel to your builds with StandardRB" | ||
LABEL com.github.actions.icon="code" | ||
LABEL com.github.actions.color="red" | ||
|
||
LABEL maintainer="Bryce Mecum <[email protected]>" | ||
|
||
COPY lib /action/lib | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# https://help.github.com/en/articles/metadata-syntax-for-github-actions | ||
name: 'StandardRB' | ||
author: 'https://github.com/amoeba' | ||
description: 'Lint your Ruby code in parallel to your builds with StandardRB' | ||
outputs: | ||
title: | ||
description: 'The title of the check' | ||
summary: | ||
description: 'The description of the check' | ||
annotations: | ||
description: 'A reference to the code failing the check' | ||
env: | ||
'GITHUB_TOKEN': 'Automatically set by Actions' | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
branding: | ||
icon: 'code' | ||
color: 'red' |