Skip to content

Commit

Permalink
lint and update action paths (ansible-community#258)
Browse files Browse the repository at this point in the history
* lint and update action paths

Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>

* make it prettier

Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>

---------

Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
  • Loading branch information
konstruktoid authored Oct 2, 2024
1 parent 78f0441 commit 36be097
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 14 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ack.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# See https://github.com/ansible-community/devtools/blob/main/.github/workflows/ack.yml
---
# See https://github.com/ansible/team-devtools/blob/main/.github/workflows/ack.yml
name: ack

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

on:
pull_request_target:
types: [opened, labeled, unlabeled, synchronize]

jobs:
ack:
uses: ansible-community/devtools/.github/workflows/ack.yml@main
uses: ansible/team-devtools/.github/workflows/ack.yml@main
5 changes: 3 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# See https://github.com/ansible-community/devtools/blob/main/.github/workflows/push.yml
---
# See https://github.com/ansible/team-devtools/blob/main/.github/workflows/push.yml
name: push
on:
push:
Expand All @@ -9,4 +10,4 @@ on:

jobs:
ack:
uses: ansible-community/devtools/.github/workflows/push.yml@main
uses: ansible/team-devtools/.github/workflows/push.yml@main
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: release

on:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: tox

# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency
Expand Down Expand Up @@ -40,7 +41,8 @@ jobs:
matrix: ${{ fromJson(needs.pre.outputs.matrix) }}

steps:
- uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed by setuptools-scm

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ This repository contains the following molecule plugins:
- podman
- vagrant


Installing `molecule-plugins` does not install dependencies specific to each,
plugin. To install these you need to install the extras for each plugin, like
`pip3 install 'molecule-plugins[azure]'`.
Expand Down
8 changes: 4 additions & 4 deletions test/gce/scenarios/linux/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Requirements

- A GCE credentials rc file
- A GCE credentials rc file

## Install

Expand All @@ -11,9 +11,9 @@ installation best practices. If not using a virtual environment, please
consider passing the widely recommended ['--user' flag][] when invoking
`pip`.

``` bash
```bash
$ pip install 'molecule_gce'
```

[Virtual environment]: https://virtualenv.pypa.io/en/latest/
['--user' flag]: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site
[Virtual environment]: https://virtualenv.pypa.io/en/latest/
['--user' flag]: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site
8 changes: 4 additions & 4 deletions test/gce/scenarios/windows/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Requirements

- A GCE credentials rc file
- A GCE credentials rc file

## Install

Expand All @@ -11,9 +11,9 @@ installation best practices. If not using a virtual environment, please
consider passing the widely recommended ['--user' flag][] when invoking
`pip`.

``` bash
```bash
$ pip install 'molecule_gce'
```

[Virtual environment]: https://virtualenv.pypa.io/en/latest/
['--user' flag]: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site
[Virtual environment]: https://virtualenv.pypa.io/en/latest/
['--user' flag]: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site

0 comments on commit 36be097

Please sign in to comment.