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

Alpha release Jan 10 #184

Merged
merged 23 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ee60e22
chore: remove dependabot pulls from changelog workflow (#152)
leogermani Nov 19, 2024
bf25feb
chore(release): merge in release v2.3.2
matticbot Nov 25, 2024
dc837d8
feat: content distribution - experimental (#168)
miguelpeixe Dec 12, 2024
353a3d8
feat(content-distribution): sync post meta (#163)
miguelpeixe Dec 12, 2024
7a43b86
feat(content-distribution): add CLI command for distribute post (#159)
naxoc Dec 12, 2024
01fb89c
fix: load text domain on init hook (#171)
dkoo Dec 16, 2024
df44896
chore(release): merge in release v2.3.3
matticbot Dec 16, 2024
e76a2dc
feat(content-distribution): control distribution meta and prevent mul…
miguelpeixe Dec 16, 2024
48df13c
fix(content-distribution): post insertion hook and additional meta fo…
miguelpeixe Dec 18, 2024
a2c54d2
feat(content-distribution): reserved taxonomies (#174)
miguelpeixe Dec 18, 2024
da4f2ff
chore(release): merge in release v2.3.4
matticbot Dec 18, 2024
4af5da1
feat(content-distribution): handle status changes (#166)
miguelpeixe Dec 20, 2024
e10aef4
feat(content-distribution): editor plugin for distribution (#167)
miguelpeixe Dec 20, 2024
deb2683
feat: limit purchase of a network membership (#169)
leogermani Dec 20, 2024
5285285
feat(content-distribution): capability and admin page (#176)
miguelpeixe Dec 23, 2024
0671181
feat(event-log): collapse data
miguelpeixe Dec 23, 2024
876351a
Revert "feat(event-log): collapse data"
miguelpeixe Dec 23, 2024
5ca60ce
feat(content-distribution): canonical url (#177)
miguelpeixe Jan 6, 2025
90c5425
feat(content-distribution): sync comment and ping statuses (#179)
miguelpeixe Jan 6, 2025
8e07640
feat(content-distribution): posts column (#178)
miguelpeixe Jan 6, 2025
956219d
feat(event-log): collapse data (#180)
miguelpeixe Jan 7, 2025
a694795
test(content-distribution): post content (#183)
miguelpeixe Jan 10, 2025
74c9119
feat(content-distribution): log incoming post errors (#182)
miguelpeixe Jan 10, 2025
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
6 changes: 3 additions & 3 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
labeler:
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'trunk'
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'trunk' && github.event.pull_request.user.login != 'dependabot[bot]'
permissions:
contents: read
pull-requests: write
Expand All @@ -14,7 +14,7 @@ jobs:
- uses: actions/labeler@v5

comment_pr:
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'trunk'
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'trunk' && github.event.pull_request.user.login != 'dependabot[bot]'
permissions:
contents: read
pull-requests: write
Expand All @@ -25,7 +25,7 @@ jobs:
uses: thollander/actions-comment-pull-request@v3
with:
message: |
Hey @${{ github.event.pull_request.assignee.login }}, good job getting this PR merged! :tada:
Hey @${{ github.event.pull_request.user.login }}, good job getting this PR merged! :tada:

Now, the `needs-changelog` label has been added to it.

Expand Down
4 changes: 4 additions & 0 deletions includes/class-accepted-actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ class Accepted_Actions {
'network_manual_sync_user' => 'User_Manually_Synced',
'network_nodes_synced' => 'Nodes_Synced',
'newspack_network_membership_plan_updated' => 'Membership_Plan_Updated',
'network_post_updated' => 'Network_Post_Updated',
'network_post_deleted' => 'Network_Post_Deleted',
];

/**
Expand All @@ -61,5 +63,7 @@ class Accepted_Actions {
'network_nodes_synced',
'newspack_node_subscription_changed',
'newspack_network_membership_plan_updated',
'network_post_updated',
'network_post_deleted',
];
}
Loading