Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: exonet/imposter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.0
Choose a base ref
...
head repository: exonet/imposter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
21 changes: 17 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -4,11 +4,24 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
time: "04:00"
interval: "weekly"
day: "tuesday"
time: "03:30"
groups:
patches-and-minor-upgrades:
update-types:
- "minor"
- "patch"

- package-ecosystem: "composer"
directory: "/"
schedule:
interval: daily
time: "03:00"
interval: "weekly"
day: "tuesday"
time: "03:30"
groups:
patches-and-minor-upgrades:
update-types:
- "minor"
- "patch"

8 changes: 3 additions & 5 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
---
name-template: 'v$NEXT_MINOR_VERSION'
tag-template: 'v$NEXT_MINOR_VERSION'
change-template: '- [#$NUMBER] $TITLE [@$AUTHOR](https://github.com/$AUTHOR)'
name-template: "v$RESOLVED_VERSION"
tag-template: "v$RESOLVED_VERSION"
change-template: "- #$NUMBER $TITLE @$AUTHOR"
sort-direction: ascending
filter-by-commitish: true
commitish: master

exclude-labels:
- 'skip-changelog'
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -14,12 +14,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run php-cs-fixer
uses: docker://oskarstark/php-cs-fixer-ga

- name: Apply php-cs-fixer changes
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply php-cs-fixer changes
2 changes: 1 addition & 1 deletion .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
@@ -14,6 +14,6 @@ jobs:
steps:
- name: Run release drafter
id: draft
uses: release-drafter/release-drafter@v5
uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -14,14 +14,14 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cache vulnerability DB
uses: actions/cache@v2
uses: actions/cache@v4
id: cache-db
with:
path: ~/.symfony/cache
key: db

- name: Check for vulnerabilities
uses: symfonycorp/security-checker-action@v2
uses: symfonycorp/security-checker-action@v5
2 changes: 1 addition & 1 deletion .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run Label Syncer
uses: micnncim/action-label-syncer@v1.3.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# imposter
Tool to fake GitHub wehbook events.
Tool to fake GitHub webhook events.

## Setup
- Install dependencies with `composer install`.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
"require": {
"symfony/console": "^5.3",
"guzzlehttp/guzzle": "^7.4",
"josegonzalez/dotenv": "^3.2"
"josegonzalez/dotenv": "^4.0"
},
"autoload": {
"psr-4": {
Loading