I just wanted to test GitHub's new "GitHub Actions" feature. So I created a .github folder in my repository and a workflows folder within that and added a simple test-workflow.yml to that folder:
name: Hello World
#on:
# schedule:
# #- cron: '0 */12 * * *'
# - cron: '* * * * *'
on: [push]
jobs:
one:
name: Hello
runs-on: alpine-latest
steps:
- run: echo "hello world"
But it doesn't appear to ever start. It just says "Starting your workflow run..." forever.
I'm wondering what I might be doing wrong.
