Skip to content

Commit

Permalink
refactor: consolidate all action files into src/ & update references (
Browse files Browse the repository at this point in the history
#4)

* style(dependabot): remove unnecessary quotations in yaml definition
  • Loading branch information
codejedi365 authored Oct 1, 2024
1 parent 105e1f6 commit 55c4088
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
32 changes: 16 additions & 16 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,40 @@ version: 2
updates:

# Track PSR new releases automatically
- package-ecosystem: "pip"
directory: "/"
- package-ecosystem: pip
directory: src/
schedule:
interval: "daily"
interval: daily
commit-message:
prefix: "build"
include: "scope"
prefix: build
include: scope
labels:
- dependencies
- dependabot
rebase-strategy: auto
versioning-strategy: "increase-if-necessary"
versioning-strategy: increase-if-necessary

# Maintain dependencies for Docker (ie our GitHub Action)
- package-ecosystem: "docker"
directory: "/"
- package-ecosystem: docker
directory: src/
schedule:
interval: "monthly"
interval: monthly
labels:
- dependencies
- dependabot
rebase-strategy: auto
commit-message:
prefix: "build"
include: "scope" # (deps)
prefix: build
include: scope # (deps)

- package-ecosystem: "github-actions"
directory: "/"
- package-ecosystem: github-actions
directory: /
schedule:
interval: "weekly"
day: "monday"
interval: weekly
day: monday
time: "18:00"
commit-message:
prefix: "ci"
prefix: ci
labels:
- dependencies
- dependabot
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
id: container-builder
uses: docker/build-push-action@v5
with:
context: .
context: ./src
load: true # add to `docker images`
push: false
platforms: linux/amd64
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Building the Action Environment

.. code:: bash
docker build -t psr-publish-action:latest .
docker build -t psr-publish-action:latest ./src
Local Testing
-------------
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ inputs:

runs:
using: docker
image: Dockerfile
image: src/Dockerfile
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 55c4088

Please sign in to comment.