Skip to content
  • This project
    • Loading...
  • Sign in

Tenzing / banners-with-skip

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • banners-with-skip
  • deploy.php
  • Jeff Balicki's avatar
    deploy · db71b35b
    db71b35b Browse Files
    Jeff Balicki committed 2017-11-29 12:57:14 -0500
deploy.php 254 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php
// Set Variables Working


if ($_POST['payload'] ) {
  // Only respond to POST requests from Github

    // If there is already a repo, just run a git pull to grab the latest changes
    shell_exec("git pull");

    die("done " . mktime());

}

?>