1
0
mirror of synced 2026-01-17 12:01:24 -05:00

Ruby quickfix : Not-certified 💬 should be at top

This commit is contained in:
PSJ
2022-05-02 14:15:43 +05:30
parent 02eb65e880
commit e4e72999b2

View File

@@ -37,6 +37,7 @@ To get started quickly, add the starter workflow to the `.github/workflows` dire
```yaml
{% data reusables.actions.actions-not-certified-by-github-comment %}
{% data reusables.actions.actions-use-sha-pinning-comment %}
name: Ruby
@@ -100,8 +101,8 @@ Each version of Ruby specified in the `ruby-version` array creates a job that ru
The full updated workflow with a matrix strategy could look like this:
```yaml
{% data reusables.actions.actions-use-sha-pinning %}
{% data reusables.actions.actions-not-certified-by-github-comment %}
{% data reusables.actions.actions-use-sha-pinning-comment %}
name: Ruby CI
@@ -201,8 +202,8 @@ steps:
The following example matrix tests all stable releases and head versions of MRI, JRuby and TruffleRuby on Ubuntu and macOS.
```yaml
{% data reusables.actions.actions-use-sha-pinning %}
{% data reusables.actions.actions-not-certified-by-github-comment %}
{% data reusables.actions.actions-use-sha-pinning-comment %}
name: Matrix Testing
@@ -235,8 +236,8 @@ jobs:
The following example installs `rubocop` and uses it to lint all files. For more information, see [RuboCop](https://github.com/rubocop-hq/rubocop). You can [configure Rubocop](https://docs.rubocop.org/rubocop/configuration.html) to decide on the specific linting rules.
```yaml
{% data reusables.actions.actions-use-sha-pinning %}
{% data reusables.actions.actions-not-certified-by-github-comment %}
{% data reusables.actions.actions-use-sha-pinning-comment %}
name: Linting
@@ -262,8 +263,8 @@ You can configure your workflow to publish your Ruby package to any package regi
You can store any access tokens or credentials needed to publish your package using repository secrets. The following example creates and publishes a package to `GitHub Package Registry` and `RubyGems`.
```yaml
{% data reusables.actions.actions-use-sha-pinning %}
{% data reusables.actions.actions-not-certified-by-github-comment %}
{% data reusables.actions.actions-use-sha-pinning-comment %}
name: Ruby Gem