Run SonarCloud via GitHub Actions

Hi Simon,

thanks for your response. Are there any chances to get a SonarCloud Action with predefined, but configurable, host url and configurable projectKey and organization like

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - name: Run SonarCloud
        uses: sonarcloud/analyse (or something like this)
        with:
          projectKey: $MyProjektKey
          orgnization: $MyOrganization
          hostUrl: <predefined sonarcloud host url>

Because I think this should be the way for a github action.