Skip to content

Commit d2c3510

Browse files
committed
Migrate project to AppTweak organization
1 parent 9f3e90b commit d2c3510

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name=adwerx/pronto-ruby
1+
name=ghcr.io/apptweak/pronto-ruby
22

33
image:
44
docker build -f Dockerfile . -t ${name}:${TAG} -t ${name}:latest

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ The docker image of this Action includes the following [Pronto Runners](https://
2727

2828
# Inputs
2929

30-
| name | description | default |
31-
| --- | --- | --- |
32-
| `runners` | Space-separated list of pronto runners to run. Must be the preinstalled runners from the list above. | `rubocop` |
33-
| `target` | The git target pronto will diff against (`-c`) | `origin/master` |
30+
| name | description | default |
31+
| --------- | ---------------------------------------------------------------------------------------------------- | --------------- |
32+
| `runners` | Space-separated list of pronto runners to run. Must be the preinstalled runners from the list above. | `rubocop` |
33+
| `target` | The git target pronto will diff against (`-c`) | `origin/master` |
3434

3535
# Secrets
3636

@@ -39,9 +39,9 @@ A GitHub token is available by default when using actions, but you must include
3939
Be sure to include the ENV variable in your job step:
4040

4141
```yaml
42-
- uses: adwerx/pronto-ruby
43-
env:
44-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42+
- uses: apptweak/pronto-ruby
43+
env:
44+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545
```
4646
4747
That's it!
@@ -66,8 +66,8 @@ jobs:
6666
runs-on: ubuntu-latest
6767
steps:
6868
- uses: actions/checkout@v2
69-
- run: git fetch origin master --depth=1
70-
- uses: adwerx/pronto-ruby@v2.8
69+
- run: git fetch origin main --depth=1
70+
- uses: apptweak/pronto-ruby@use_head_commit
7171
env:
7272
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7373
```
@@ -94,7 +94,7 @@ name: Pronto
9494
- run: git fetch origin master --depth=1
9595
- uses: actions/setup-node@v1
9696
- run: yarn install --ignore-optional --ignore-scripts --frozen-lockfile --non-interactive
97-
- uses: adwerx/pronto-ruby@v2.8
97+
- uses: apptweak/pronto-ruby@use_head_commit
9898
with:
9999
runners: eslint_npm # ...
100100
env:

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Pronto Ruby
2-
author: jbielick@adwerx.com
2+
author: info@apptweak.com
33
description: |
44
Run pronto code review runners on your commits and pull requests
55
and get feedback as inline code annotations.
@@ -25,7 +25,7 @@ inputs:
2525
origin/master
2626
runs:
2727
using: docker
28-
image: "docker://docker.io/renatolond/pronto-ruby:adapted"
28+
image: "docker://ghcr.io/apptweak/pronto-ruby:adapted"
2929
args:
3030
- run
3131
- -r

0 commit comments

Comments
 (0)