-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from ObolNetwork/luke/feedback-items
Encorporate feedback for ansible charts
- Loading branch information
Showing
16 changed files
with
255 additions
and
161 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!-- 🎉🚀 Thanks for submitting a PR! | ||
📐 Format this PR template as follows: | ||
- 1️⃣ PR title (above): concise overview | ||
- 2️⃣ PR body: Replace 'body...' with detailed description of the change. | ||
- 3️⃣️ ticket: Replace #000 with link to a GitHub issue (or 'none' if PR is trivial). | ||
- 🌱 Starting with an issue, outlining the problem and proposed solution, is highly encouraged. | ||
- 🧪 Make sure you completed all tests and satisfied acceptance specified in the issue, if any. | ||
- 📘 Make sure you have made any necessary documentation changes | ||
- 🐘🐁 We do trunk based development; small PRs on stable main branch. | ||
💀 Delete these instructions | ||
--> | ||
body... | ||
|
||
ticket: #000 |
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,22 @@ | ||
# This is a basic workflow adding every issue in this repo to the Obol Project Management Board. | ||
name: Add Issue To Project | ||
|
||
# Controls when the workflow will run - new issues | ||
on: | ||
issues: | ||
types: | ||
- opened | ||
|
||
# This workflow contains a single job called "build" | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
# Steps | ||
steps: | ||
- name: Add Issue To Project | ||
uses: actions/[email protected] | ||
with: | ||
# URL of the project to add issues to | ||
project-url: https://github.com/orgs/ObolNetwork/projects/7 | ||
# A GitHub personal access token with write access to the project, need org admin's token with repo and project permissions, need to store the token outside the script if public | ||
github-token: ${{ secrets.GH_ORG_ADMIN_SECRET }} |
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,21 @@ | ||
name: Label issues | ||
on: | ||
issues: | ||
types: | ||
- reopened | ||
- opened | ||
jobs: | ||
label_issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ["ansible", "platform"] | ||
}) |
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,18 @@ | ||
name: ansible-lint | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
name: Ansible Lint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Run ansible-lint | ||
uses: ansible/ansible-lint-action@v6 |
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 @@ | ||
*.pem |
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,5 @@ | ||
- repo: https://github.com/ansible-community/ansible-lint.git | ||
rev: v6.15.0 | ||
hooks: | ||
- id: ansible-lint | ||
files: \.(yaml|yml)$ |
Validating CODEOWNERS rules …
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,4 @@ | ||
# This file sets up the designated owners of the infrastructure repo. | ||
# All PR's will require a review from a member of the codeowners team. | ||
|
||
* @ObolNetwork/platform |
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 |
---|---|---|
|
@@ -13,5 +13,5 @@ | |
changed_when: docker_valid != 0 | ||
|
||
roles: | ||
- docker-install | ||
- charon-cluster | ||
- docker_install | ||
- charon_cluster |
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
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,2 @@ | ||
collections: | ||
- name: community.docker |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.