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

retry api requests #26

Merged
merged 5 commits into from Oct 20, 2019
Merged

retry api requests #26

merged 5 commits into from Oct 20, 2019

Commits on Oct 3, 2019

  1. retry requests

    softprops committed Oct 3, 2019
    1
    Copy the full SHA
    2e7c800 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2019

  1. Add the release HTML URL to outputs

    This will allow subsequent actions to get access to the HTML URL for the
    release created with this. Handy for composing multiple actions together
    that are related to the release.
    
    In my case I wanted to get the  URL into a slack message posted to the
    team when a release is published.
    
    The output can be referenced by using the `steps.release.ouput.url` in
    the workflow yaml:
    
        - name: Release
          id: release
          uses: softprops/action-gh-release@v1
          with:
            name: "My Release"
          env:
            GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        - name: Slack
          uses: csexton/slack-message-action@v1
          with:
            message: New release posted at ${{ steps.release.outputs.url}}
    csexton authored and softprops committed Oct 20, 2019
    1
    Copy the full SHA
    1a522d8 View commit details
    Browse the repository at this point in the history
  2. setup integration test

    softprops committed Oct 20, 2019
    1
    Copy the full SHA
    845942e View commit details
    Browse the repository at this point in the history
  3. back to minimal set

    softprops committed Oct 20, 2019
    1
    Copy the full SHA
    c99850e View commit details
    Browse the repository at this point in the history
  4. rebuild and fmt

    softprops committed Oct 20, 2019
    1
    Copy the full SHA
    e234343 View commit details
    Browse the repository at this point in the history