[Scummvm-git-logs] scummvm-web master -> 991fb75184f7d1f76d4a86438202a313f83ebde6
lephilousophe
noreply at scummvm.org
Mon Sep 1 17:56:54 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-web' repo located at https://api.github.com/repos/scummvm/scummvm-web .
Summary:
991fb75184 CI: Only run when pushing on master
Commit: 991fb75184f7d1f76d4a86438202a313f83ebde6
https://github.com/scummvm/scummvm-web/commit/991fb75184f7d1f76d4a86438202a313f83ebde6
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2025-09-01T19:56:43+02:00
Commit Message:
CI: Only run when pushing on master
Avoids to run the check twice on PRs
Changed paths:
.github/workflows/ci.yml
composer.json
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6709a0e8..bf3bd0ad 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,5 +1,9 @@
name: Web CI
-on: [push, pull_request]
+on:
+ push:
+ branches:
+ - master
+ pull_request: null
permissions:
contents: read
jobs:
diff --git a/composer.json b/composer.json
index a9b59801..c00e4a9a 100644
--- a/composer.json
+++ b/composer.json
@@ -58,7 +58,7 @@
],
"start": [
"Composer\\Config::disableProcessTimeout",
- "php -S localhost:8000 -t ./public_html ./public_html/index.php"
+ "php -S 10.122.250.179:8000 -t ./public_html ./public_html/index.php"
],
"develop": [
"@build-dev",
More information about the Scummvm-git-logs
mailing list