Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DO NOT MERGE: Idea for interface #104

Draft
wants to merge 14 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

56 changes: 0 additions & 56 deletions .eslintrc.json

This file was deleted.

11 changes: 0 additions & 11 deletions .github/workflows/ci.yml

This file was deleted.

48 changes: 0 additions & 48 deletions .github/workflows/release.yml

This file was deleted.

107 changes: 107 additions & 0 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
# Copyright 2023 Jacob Hummer
# SPDX-License-Identifier: Apache-2.0
name: Test action
on:
push:
branches: "master"

Check warning on line 6 in .github/workflows/test-action.yml

View check run for this annotation

In Solidarity / Inclusive Language

Match Found

Please consider an alternative to `master`. Possibilities include: `primary`, `main`, `leader`, `active`, `writer`
Raw output
/master/gi
paths-ignore:
- .gitignore
- .gitattributes
- LICENSE
- README.md
- .github/**
- "!.github/workflows/test-action.yml"
pull_request:
paths-ignore:
- .gitignore
- .gitattributes
- LICENSE
- README.md
- .github/**
- "!.github/workflows/test-action.yml"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
test-action-set-secrets-repository-environment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
with:
dry-run: true
mode: set-secrets
repository: github/docs
secrets: |
HELLO=world
MESSAGE=hello
environment: github-pages
test-action-set-variables-repositories:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
with:
dry-run: true
mode: set-variables
repositories: |
github/.github
octocat/hello-world
variable: |
HELLO=world
MESSAGE=hello
test-action-delete-secrets-query-dependabot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
with:
dry-run: true
mode: delete-secrets
app: dependabot
query: user:sindresorhus topic:nodejs
secret: |
HELLO
MESSAGE
test-action-delete-variables:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
with:
dry-run: true
mode: delete-variables
query: org:nodejs node
variables: |
HELLO
MESSAGE
test-action-set-organization-secrets-selected:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
with:
dry-run: true
mode: set-secrets
organization: github
secrets: |
HELLO=world
MESSAGE=hello
visibility: selected
repositories: |
github/docs
github/feedback
test-action-set-user-secret-codespaces:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
with:
dry-run: true
mode: set-secrets
user: github-actions
secrets: |
HELLO=world
MESSAGE=hello
app: codespaces
18 changes: 18 additions & 0 deletions .github/workflows/update-tags.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2023 Jacob Hummer
# SPDX-License-Identifier: Apache-2.0
name: Update tags
on:
release:
types: [released]
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: write
jobs:
update-tags:
runs-on: ubuntu-latest
steps:
- uses: actions/publish-action@v0.2.2
with:
source-tag: ${{ github.event.release.tag_name }}
100 changes: 0 additions & 100 deletions .gitignore

This file was deleted.

3 changes: 0 additions & 3 deletions .prettierignore

This file was deleted.

7 changes: 0 additions & 7 deletions .releaserc.yml

This file was deleted.

Loading