Skip to content
Merged
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
13 changes: 12 additions & 1 deletion .github/workflows/preview-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,13 @@ jobs:
release:
name: Publish prerelease (all targets)
needs: [build]
if: github.event_name == 'pull_request' && github.event.pull_request.head.ref != 'upstream-merge'
# Only publish for PRs from the main repo (not forks) to avoid permission failures.
# Fixes: https://github.com/just-every/code/issues/355
# Fixes: https://github.com/just-every/code/issues/356
if: >-
github.event_name == 'pull_request' &&
github.event.pull_request.head.ref != 'upstream-merge' &&
github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
steps:
- name: Resolve slug and next tag
Expand Down Expand Up @@ -327,6 +333,11 @@ jobs:
comment:
name: Post Artifact Links
needs: [build, release]
# Only run if release job ran (which is conditional on non-fork PRs)
if: >-
github.event_name == 'pull_request' &&
github.event.pull_request.head.ref != 'upstream-merge' &&
github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
steps:
- name: Resolve slug and latest tag
Expand Down
145 changes: 0 additions & 145 deletions REPORT_issues.md

This file was deleted.

59 changes: 0 additions & 59 deletions issue-responses.md

This file was deleted.

Loading